17 lines
219 B
Kotlin
17 lines
219 B
Kotlin
plugins {
|
|
id("org.jetbrains.kotlin.jvm")
|
|
}
|
|
|
|
kotlin {
|
|
jvmToolchain(17)
|
|
}
|
|
|
|
dependencies {
|
|
implementation("org.json:json:20231013")
|
|
testImplementation("junit:junit:4.13.2")
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnit()
|
|
}
|