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