Files
zend-token/build.gradle.kts
2026-08-23 02:12:08 +08:00

20 lines
361 B
Kotlin

plugins {
id("java")
}
group = "com.bytenya.ztoken"
version = "1.0-SNAPSHOT"
repositories {
mavenCentral()
}
dependencies {
testImplementation(platform("org.junit:junit-bom:6.0.0"))
testImplementation("org.junit.jupiter:junit-jupiter")
testRuntimeOnly("org.junit.platform:junit-platform-launcher")
}
tasks.test {
useJUnitPlatform()
}