Initialize
This commit is contained in:
24
build.gradle.kts
Normal file
24
build.gradle.kts
Normal file
@@ -0,0 +1,24 @@
|
||||
plugins {
|
||||
kotlin("jvm") version "2.0.10"
|
||||
}
|
||||
|
||||
group = "org.subman"
|
||||
version = "1.0-SNAPSHOT"
|
||||
|
||||
repositories {
|
||||
maven { setUrl("https://maven.aliyun.com/repository/public/") }
|
||||
mavenLocal()
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
dependencies {
|
||||
testImplementation(kotlin("test"))
|
||||
implementation(kotlin("stdlib-jdk8"))
|
||||
}
|
||||
|
||||
tasks.test {
|
||||
useJUnitPlatform()
|
||||
}
|
||||
kotlin {
|
||||
jvmToolchain(21)
|
||||
}
|
||||
Reference in New Issue
Block a user