core/mppProjectWithSerialization.gradle

56 lines
1.4 KiB
Groovy
Raw Normal View History

2021-11-24 13:52:27 +06:00
project.version = "$version"
2020-11-25 18:40:45 +06:00
project.group = "$group"
2021-11-28 01:11:04 +06:00
apply from: "$publishGradlePath"
2020-11-25 18:40:45 +06:00
kotlin {
2021-12-05 19:00:38 +06:00
jvm()
2021-11-24 13:52:27 +06:00
js (IR) {
2020-11-25 18:40:45 +06: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"
}
}
}
}
apply from: "$defaultAndroidSettingsPresetPath"
2021-11-28 01:11:04 +06:00
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}