2020-09-15 18:57:41 +06:00
|
|
|
project.version = "$version"
|
|
|
|
project.group = "$group"
|
|
|
|
|
2024-08-27 18:57:59 +06:00
|
|
|
apply from: "$publish"
|
2020-09-27 20:25:42 +06:00
|
|
|
|
2020-09-15 18:57:41 +06:00
|
|
|
kotlin {
|
2021-11-09 14:03:51 +06:00
|
|
|
jvm {
|
|
|
|
compilations.main {
|
|
|
|
kotlinOptions {
|
2023-11-02 19:00:35 +06:00
|
|
|
jvmTarget = "17"
|
2021-11-09 14:03:51 +06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-07-31 14:05:52 +06:00
|
|
|
js (IR) {
|
2024-08-03 01:47:39 +06:00
|
|
|
browser {
|
|
|
|
testTask {
|
|
|
|
useMocha {
|
|
|
|
timeout = "60000"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
nodejs {
|
|
|
|
testTask {
|
|
|
|
useMocha {
|
|
|
|
timeout = "60000"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-09-15 18:57:41 +06:00
|
|
|
}
|
2023-09-22 14:14:23 +06:00
|
|
|
androidTarget {
|
2020-11-11 16:06:44 +06:00
|
|
|
publishAllLibraryVariants()
|
2023-11-02 19:00:35 +06:00
|
|
|
compilations.all {
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = "17"
|
|
|
|
}
|
|
|
|
}
|
2020-11-10 15:43:15 +06:00
|
|
|
}
|
2023-04-03 10:26:03 +06:00
|
|
|
linuxX64()
|
|
|
|
mingwX64()
|
2023-10-20 21:53:27 +06:00
|
|
|
linuxArm64()
|
2020-09-15 18:57:41 +06:00
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
|
|
|
implementation kotlin('stdlib')
|
2022-12-05 21:19:38 +06:00
|
|
|
api libs.kt.serialization
|
2020-09-15 18:57:41 +06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
commonTest {
|
|
|
|
dependencies {
|
2024-08-03 01:47:39 +06:00
|
|
|
implementation kotlin('test')
|
2020-09-15 18:57:41 +06:00
|
|
|
implementation kotlin('test-annotations-common')
|
2023-08-12 22:37:35 +06:00
|
|
|
implementation libs.kt.coroutines.test
|
2020-09-15 18:57:41 +06:00
|
|
|
}
|
|
|
|
}
|
2023-10-20 21:53:27 +06:00
|
|
|
|
2023-08-08 18:45:36 +06:00
|
|
|
androidUnitTest {
|
2020-11-10 15:43:15 +06:00
|
|
|
dependencies {
|
|
|
|
implementation kotlin('test-junit')
|
2022-03-10 17:04:05 +06:00
|
|
|
implementation libs.android.test.junit
|
|
|
|
implementation libs.android.espresso
|
2020-11-10 15:43:15 +06:00
|
|
|
}
|
|
|
|
}
|
2023-10-20 21:53:27 +06:00
|
|
|
jvmTest {
|
2023-04-03 10:26:03 +06:00
|
|
|
dependencies {
|
2023-04-03 22:35:41 +06:00
|
|
|
implementation kotlin('test-junit')
|
|
|
|
}
|
|
|
|
}
|
2023-10-20 21:53:27 +06:00
|
|
|
jsTest {
|
2023-04-03 22:35:41 +06:00
|
|
|
dependencies {
|
2023-10-20 21:53:27 +06:00
|
|
|
implementation kotlin('test-js')
|
2023-04-03 10:26:03 +06:00
|
|
|
}
|
|
|
|
}
|
2024-05-12 19:17:16 +06:00
|
|
|
nativeMain.dependsOn commonMain
|
|
|
|
linuxX64Main.dependsOn nativeMain
|
|
|
|
mingwX64Main.dependsOn nativeMain
|
|
|
|
linuxArm64Main.dependsOn nativeMain
|
|
|
|
|
|
|
|
androidMain.dependsOn jvmMain
|
2020-09-15 18:57:41 +06:00
|
|
|
}
|
2020-10-12 22:54:05 +06:00
|
|
|
}
|
2020-11-10 15:43:15 +06:00
|
|
|
|
2024-08-27 18:57:59 +06:00
|
|
|
apply from: "$defaultAndroidSettings"
|
2021-09-19 20:50:24 +06:00
|
|
|
|
|
|
|
java {
|
2023-11-02 19:00:35 +06:00
|
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
|
|
targetCompatibility = JavaVersion.VERSION_17
|
2021-09-19 20:50:24 +06:00
|
|
|
}
|