27 lines
671 B
Kotlin
27 lines
671 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")
|
|
implementation("io.ktor:ktor-client-core:3.1.1")
|
|
implementation("io.ktor:ktor-client-cio:3.1.1")
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
}
|
|
kotlin {
|
|
jvmToolchain(21)
|
|
} |