2021-03-13 14:16:35 +00:00
|
|
|
project.version = "$version"
|
2021-02-21 19:30:47 +00:00
|
|
|
project.group = "$group"
|
|
|
|
|
2021-02-22 15:01:08 +00:00
|
|
|
apply from: "$publishGradlePath"
|
2021-02-21 19:30:47 +00:00
|
|
|
|
|
|
|
kotlin {
|
2022-06-11 14:27:00 +00:00
|
|
|
jvm {
|
|
|
|
compilations.main {
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = "1.8"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-06-07 13:57:06 +00:00
|
|
|
js (IR) {
|
2021-02-21 19:30:47 +00:00
|
|
|
browser()
|
|
|
|
nodejs()
|
|
|
|
}
|
|
|
|
android {
|
|
|
|
publishAllLibraryVariants()
|
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
|
|
|
implementation kotlin('stdlib')
|
|
|
|
api "org.jetbrains.kotlinx:kotlinx-serialization-json:$kotlin_serialisation_core_version"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
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')
|
|
|
|
implementation "androidx.test.ext:junit:$test_ext_junit_version"
|
|
|
|
implementation "androidx.test.espresso:espresso-core:$espresso_core"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-23 07:19:27 +00:00
|
|
|
java {
|
2021-11-12 12:15:42 +00:00
|
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
2021-09-23 07:19:27 +00:00
|
|
|
}
|
|
|
|
|
2021-02-21 19:30:47 +00:00
|
|
|
apply from: "$defaultAndroidSettingsPresetPath"
|