mirror of
https://github.com/jlengrand/ksdtoolkit-tests.git
synced 2026-03-10 00:21:30 +00:00
23 lines
343 B
Kotlin
23 lines
343 B
Kotlin
plugins {
|
|
kotlin("jvm") version "2.1.10"
|
|
}
|
|
|
|
group = "nl.lengrand"
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation(fileTree(mapOf("dir" to "libs", "include" to listOf("*.jar"))))
|
|
|
|
testImplementation(kotlin("test"))
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
}
|
|
kotlin {
|
|
jvmToolchain(23)
|
|
} |