This commit is contained in:
2025-03-04 11:22:36 +08:00
committed by rainbus
commit ae4a1b79ee
24 changed files with 3677 additions and 0 deletions

27
build.gradle.kts Normal file
View File

@@ -0,0 +1,27 @@
plugins {
kotlin("jvm") version "2.1.10"
kotlin("plugin.serialization") 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.charleskorn.kaml:kaml:0.72.0")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.8.0")
implementation("io.ktor:ktor-client-core:3.1.1")
implementation("io.ktor:ktor-client-cio:3.1.1")
}
tasks.test {
useJUnitPlatform()
}
kotlin {
jvmToolchain(21)
}