e-voting/build.gradle.kts
2026-03-10 16:43:36 +01:00

21 lines
411 B
Plaintext

plugins {
id("java")
}
group = "dev.ksan"
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")
implementation("org.bouncycastle:bcprov-jdk18on:1.83")
}
tasks.test {
useJUnitPlatform()
}