rework templates

This commit is contained in:
2025-04-30 14:39:12 +06:00
parent 5fe23903a4
commit 373906e156
15 changed files with 196 additions and 183 deletions

View File

@@ -0,0 +1,21 @@
kotlin {
jvm {
compilations.main {
kotlinOptions {
jvmTarget = "17"
}
}
}
sourceSets {
jvmMain {
dependencies {
}
}
jvmTest {
dependencies {
implementation kotlin('test-junit')
}
}
}
}