24 lines
No EOL
445 B
Kotlin
24 lines
No EOL
445 B
Kotlin
plugins {
|
|
kotlin("jvm") version "2.1.20"
|
|
kotlin("plugin.serialization") version "2.1.21"
|
|
}
|
|
|
|
group = "me.koendev"
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation(files("../Utils-latest.jar"))
|
|
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.1")
|
|
implementation("de.thelooter:toml4j:0.8.1")
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
}
|
|
kotlin {
|
|
jvmToolchain(21)
|
|
} |