e-voting/build.gradle.kts
2026-03-27 17:38:17 +01:00

25 lines
612 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")
implementation("org.bouncycastle:bcpkix-jdk18on:1.83")
implementation("org.springframework.security:spring-security-crypto:7.1.0-M2")
implementation("commons-logging:commons-logging:1.2")}
tasks.test {
useJUnitPlatform()
}