24 lines
416 B
Kotlin
24 lines
416 B
Kotlin
plugins {
|
|
kotlin("jvm") version "2.2.10"
|
|
kotlin("plugin.serialization") version "2.2.20"
|
|
}
|
|
|
|
group = "moe.rosa"
|
|
version = "0.1.0"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation(kotlin("test"))
|
|
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.9.0")
|
|
implementation(kotlin("reflect"))
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
}
|
|
kotlin {
|
|
jvmToolchain(24)
|
|
} |