23 lines
352 B
Kotlin
23 lines
352 B
Kotlin
plugins {
|
|
kotlin("jvm") version "1.9.21"
|
|
}
|
|
|
|
group = "org.subman"
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
repositories {
|
|
maven("https://maven.aliyun.com/repository/public/")
|
|
mavenLocal()
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation("org.jetbrains.kotlin:kotlin-test")
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
}
|
|
kotlin {
|
|
jvmToolchain(21)
|
|
} |