core/mppProjectWithSerialization.gradle

70 lines
1.6 KiB
Groovy
Raw Normal View History

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 {
2024-02-16 07:40:47 +00:00
jvm {
compilations.main {
kotlinOptions {
jvmTarget = "17"
}
}
}
2021-11-24 07:52:27 +00:00
js (IR) {
2020-11-25 12:40:45 +00:00
browser()
nodejs()
}
2024-02-16 07:40:47 +00:00
androidTarget {
2020-11-25 12:40:45 +00:00
publishAllLibraryVariants()
2024-02-16 07:40:47 +00:00
compilations.all {
kotlinOptions {
jvmTarget = "17"
}
}
2020-11-25 12:40:45 +00:00
}
sourceSets {
commonMain {
dependencies {
2024-02-16 07:40:47 +00:00
implementation kotlin('stdlib')
2022-03-02 08:36:17 +00:00
api libs.kotlin.serialization
2020-11-25 12:40:45 +00:00
}
}
commonTest {
dependencies {
implementation kotlin('test-common')
implementation kotlin('test-annotations-common')
2024-02-16 07:40:47 +00:00
implementation libs.kotlin.coroutines.test
2020-11-25 12:40:45 +00:00
}
}
jvmTest {
dependencies {
implementation kotlin('test-junit')
}
}
jsTest {
dependencies {
implementation kotlin('test-js')
implementation kotlin('test-junit')
}
}
2024-02-16 07:40:47 +00:00
androidUnitTest {
2020-11-25 12:40:45 +00:00
dependencies {
implementation kotlin('test-junit')
2024-02-16 07:40:47 +00:00
implementation libs.android.test.junit
implementation libs.android.espresso
2020-11-25 12:40:45 +00:00
}
}
2024-02-16 07:40:47 +00:00
androidMain.dependsOn jvmMain
}
2020-11-25 12:40:45 +00:00
}
apply from: "$defaultAndroidSettingsPresetPath"
2021-11-27 19:11:04 +00:00
java {
2024-02-16 07:40:47 +00:00
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
2021-11-27 19:11:04 +00:00
}