mirror of
https://github.com/HighCapable/SweetDependency.git
synced 2025-09-05 18:25:48 +08:00
23 lines
389 B
Plaintext
23 lines
389 B
Plaintext
plugins {
|
|
autowire(libs.plugins.org.jetbrains.kotlin.jvm)
|
|
application
|
|
}
|
|
|
|
group = "com.highcapable.sweetdependency.demo_jvm"
|
|
version = "1.0-SNAPSHOT"
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
kotlin {
|
|
jvmToolchain(17)
|
|
}
|
|
|
|
application {
|
|
mainClass.set("com.highcapable.sweetdependency.demo_jvm.MainKt")
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation(org.jetbrains.kotlin.kotlin.test)
|
|
} |