Creates way to use ksdtoolkit as library

This commit is contained in:
Julien Lengrand-Lambert
2025-04-16 17:21:07 +02:00
commit 96e18e9a50
16 changed files with 547 additions and 0 deletions

23
build.gradle.kts Normal file
View File

@@ -0,0 +1,23 @@
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)
}