69 lines
1.5 KiB
Groovy
69 lines
1.5 KiB
Groovy
project.version = "$version"
|
|
project.group = "$group"
|
|
|
|
apply from: "$publishGradlePath"
|
|
|
|
kotlin {
|
|
jvm {
|
|
compilations.main {
|
|
kotlinOptions {
|
|
jvmTarget = "17"
|
|
}
|
|
}
|
|
}
|
|
js (IR) {
|
|
browser()
|
|
nodejs()
|
|
}
|
|
androidTarget {
|
|
publishAllLibraryVariants()
|
|
compilations.all {
|
|
kotlinOptions {
|
|
jvmTarget = "17"
|
|
}
|
|
}
|
|
}
|
|
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
implementation kotlin('stdlib')
|
|
api libs.kotlin.serialization
|
|
}
|
|
}
|
|
commonTest {
|
|
dependencies {
|
|
implementation kotlin('test-common')
|
|
implementation kotlin('test-annotations-common')
|
|
implementation libs.kotlin.coroutines.test
|
|
}
|
|
}
|
|
jvmTest {
|
|
dependencies {
|
|
implementation kotlin('test-junit')
|
|
}
|
|
}
|
|
jsTest {
|
|
dependencies {
|
|
implementation kotlin('test-js')
|
|
}
|
|
}
|
|
androidUnitTest {
|
|
dependencies {
|
|
implementation kotlin('test-junit')
|
|
implementation libs.android.test.junit
|
|
implementation libs.android.espresso
|
|
}
|
|
}
|
|
|
|
androidMain.dependsOn jvmMain
|
|
}
|
|
}
|
|
|
|
apply from: "$defaultAndroidSettingsPresetPath"
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
targetCompatibility = JavaVersion.VERSION_17
|
|
}
|