21 lines
276 B
Text
21 lines
276 B
Text
|
plugins {
|
||
|
kotlin("jvm") version "1.9.22"
|
||
|
}
|
||
|
|
||
|
group = "org.bm00"
|
||
|
version = "1.0-SNAPSHOT"
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
testImplementation("org.jetbrains.kotlin:kotlin-test")
|
||
|
}
|
||
|
|
||
|
tasks.test {
|
||
|
useJUnitPlatform()
|
||
|
}
|
||
|
kotlin {
|
||
|
jvmToolchain(19)
|
||
|
}
|