initial commit
This commit is contained in:
commit
da99eb4f70
15 changed files with 724 additions and 0 deletions
24
build.gradle.kts
Normal file
24
build.gradle.kts
Normal 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)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue