blob: 6288bbca4bb86079248209863a651b75600a8833 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
plugins {
id("java")
}
group = "ruhr.scholz"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
testImplementation(platform("org.junit:junit-bom:5.10.0"))
testImplementation("org.junit.jupiter:junit-jupiter")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
// Source: https://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk18on
implementation("org.bouncycastle:bcprov-jdk18on:1.83")
// Source: https://mvnrepository.com/artifact/org.bouncycastle/bcpkix-jdk18on
implementation("org.bouncycastle:bcpkix-jdk18on:1.83")
// Source: https://mvnrepository.com/artifact/jakarta.xml.bind/jakarta.xml.bind-api
implementation("jakarta.xml.bind:jakarta.xml.bind-api:4.0.5")
}
tasks.test {
useJUnitPlatform()
}
|