40 lines
842 B
Groovy
Raw Permalink Normal View History

2021-03-02 15:28:38 +06:00
project.version = "$version"
2020-12-02 21:50:52 +06:00
project.group = "$group"
// apply from: "$publishGradlePath"
kotlin {
2022-06-29 13:36:15 +06:00
jvm {
compilations.main {
kotlinOptions {
2023-11-02 19:20:45 +06:00
jvmTarget = "17"
2022-06-29 13:36:15 +06:00
}
}
}
2020-12-02 21:50:52 +06:00
sourceSets {
commonMain {
dependencies {
2022-01-29 21:47:34 +06:00
implementation libs.kotlin
api libs.kotlin.serialization
2020-12-02 21:50:52 +06:00
}
}
commonTest {
dependencies {
2022-01-29 21:47:34 +06:00
implementation libs.kotlin.test.common
implementation libs.kotlin.test.annotations.common
2020-12-02 21:50:52 +06:00
}
}
jvmTest {
dependencies {
2022-01-29 21:47:34 +06:00
implementation libs.kotlin.test.junit
2020-12-02 21:50:52 +06:00
}
}
}
}
2021-09-23 13:20:20 +06:00
java {
2023-11-02 19:20:45 +06:00
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
2021-09-23 13:20:20 +06:00
}