21 lines
264 B
Text
21 lines
264 B
Text
|
plugins {
|
||
|
kotlin("jvm") version "1.9.23"
|
||
|
}
|
||
|
|
||
|
group = "dev.nuculabs.dsa"
|
||
|
version = "1.0-SNAPSHOT"
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
testImplementation(kotlin("test"))
|
||
|
}
|
||
|
|
||
|
tasks.test {
|
||
|
useJUnitPlatform()
|
||
|
}
|
||
|
kotlin {
|
||
|
jvmToolchain(20)
|
||
|
}
|