Files
ksdtoolkit-tests/build.gradle.kts
2025-04-16 17:21:07 +02:00

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)
}