24 lines
565 B
Kotlin
24 lines
565 B
Kotlin
plugins {
|
|
kotlin("jvm") version "2.1.10"
|
|
}
|
|
|
|
group = "com.subman"
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
repositories {
|
|
// maven { setUrl("https://maven.aliyun.com/repository/public") }
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation(kotlin("test"))
|
|
implementation("com.fasterxml.jackson.core:jackson-databind:2.18.3")
|
|
implementation("com.fasterxml.jackson.module:jackson-module-kotlin:2.18.3")
|
|
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.18.3")
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()}
|
|
kotlin {
|
|
jvmToolchain(21)
|
|
} |