Files
coco 723ce1af5c a
2026-07-03 15:12:48 +08:00

17 lines
269 B
Groovy

plugins {
id 'org.jetbrains.kotlin.jvm' version "1.9.22"
}
repositories {
mavenCentral()
}
dependencies {
testImplementation platform('org.junit:junit-bom:5.9.1')
testImplementation 'org.junit.jupiter:junit-jupiter'
}
test {
useJUnitPlatform()
}