initial commit

This commit is contained in:
KoenDR06 2025-05-31 16:32:15 +02:00
commit da99eb4f70
15 changed files with 724 additions and 0 deletions

24
build.gradle.kts Normal file
View file

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