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() }