2021-11-24 07:52:27 +00:00
|
|
|
project.version = "$version"
|
2020-11-25 12:40:45 +00:00
|
|
|
project.group = "$group"
|
|
|
|
|
2021-11-27 19:11:04 +00:00
|
|
|
apply from: "$publishGradlePath"
|
2020-11-25 12:40:45 +00:00
|
|
|
|
|
|
|
kotlin {
|
2021-12-05 13:00:38 +00:00
|
|
|
jvm()
|
2021-11-24 07:52:27 +00:00
|
|
|
js (IR) {
|
2020-11-25 12:40:45 +00:00
|
|
|
browser()
|
|
|
|
nodejs()
|
|
|
|
}
|
|
|
|
android {
|
|
|
|
publishAllLibraryVariants()
|
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
2022-03-02 08:36:17 +00:00
|
|
|
implementation libs.kotlin.std
|
|
|
|
api libs.kotlin.serialization
|
2020-11-25 12:40:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
commonTest {
|
|
|
|
dependencies {
|
|
|
|
implementation kotlin('test-common')
|
|
|
|
implementation kotlin('test-annotations-common')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
jvmTest {
|
|
|
|
dependencies {
|
|
|
|
implementation kotlin('test-junit')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
jsTest {
|
|
|
|
dependencies {
|
|
|
|
implementation kotlin('test-js')
|
|
|
|
implementation kotlin('test-junit')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
androidTest {
|
|
|
|
dependencies {
|
|
|
|
implementation kotlin('test-junit')
|
2022-03-02 08:36:17 +00:00
|
|
|
implementation libs.androidx.test.junit
|
|
|
|
implementation libs.androidx.espresso
|
2020-11-25 12:40:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
apply from: "$defaultAndroidSettingsPresetPath"
|
2021-11-27 19:11:04 +00:00
|
|
|
|
|
|
|
java {
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
}
|