21 lines
262 B
Plaintext
21 lines
262 B
Plaintext
|
plugins {
|
||
|
kotlin("jvm")
|
||
|
}
|
||
|
|
||
|
group = "dev.usbharu"
|
||
|
version = "1.0-SNAPSHOT"
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
testImplementation("org.jetbrains.kotlin:kotlin-test")
|
||
|
}
|
||
|
|
||
|
tasks.test {
|
||
|
useJUnitPlatform()
|
||
|
}
|
||
|
kotlin {
|
||
|
jvmToolchain(17)
|
||
|
}
|