2022-03-10 11:47:37 +00:00
|
|
|
project.version = "$version"
|
|
|
|
project.group = "$group"
|
|
|
|
|
2024-08-27 12:57:59 +00:00
|
|
|
apply from: "$publish"
|
2022-03-10 11:47:37 +00:00
|
|
|
|
|
|
|
kotlin {
|
|
|
|
jvm {
|
|
|
|
compilations.main {
|
|
|
|
kotlinOptions {
|
2023-11-02 13:00:35 +00:00
|
|
|
jvmTarget = "17"
|
2022-03-10 11:47:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
js (IR) {
|
2024-08-02 19:47:39 +00:00
|
|
|
browser {
|
|
|
|
testTask {
|
|
|
|
useMocha {
|
|
|
|
timeout = "60000"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
nodejs {
|
|
|
|
testTask {
|
|
|
|
useMocha {
|
|
|
|
timeout = "60000"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-03-10 11:47:37 +00:00
|
|
|
}
|
2023-09-22 08:14:23 +00:00
|
|
|
androidTarget {
|
2022-03-10 11:47:37 +00:00
|
|
|
publishAllLibraryVariants()
|
2023-11-02 13:00:35 +00:00
|
|
|
compilations.all {
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = "17"
|
|
|
|
}
|
|
|
|
}
|
2022-03-10 11:47:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
|
|
|
implementation kotlin('stdlib')
|
|
|
|
implementation compose.runtime
|
2024-05-12 15:34:17 +00:00
|
|
|
api libs.kt.serialization
|
2022-03-10 11:47:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
commonTest {
|
|
|
|
dependencies {
|
|
|
|
implementation kotlin('test-common')
|
|
|
|
implementation kotlin('test-annotations-common')
|
2023-08-12 16:37:35 +00:00
|
|
|
implementation libs.kt.coroutines.test
|
2022-03-10 11:47:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
jvmMain {
|
|
|
|
dependencies {
|
|
|
|
implementation compose.desktop.currentOs
|
|
|
|
}
|
|
|
|
}
|
|
|
|
jvmTest {
|
|
|
|
dependencies {
|
|
|
|
implementation kotlin('test-junit')
|
2024-05-12 15:34:17 +00:00
|
|
|
implementation compose.uiTest
|
2022-03-10 11:47:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
jsMain {
|
|
|
|
dependencies {
|
|
|
|
implementation compose.web.core
|
|
|
|
}
|
|
|
|
}
|
|
|
|
jsTest {
|
|
|
|
dependencies {
|
|
|
|
implementation kotlin('test-js')
|
|
|
|
}
|
|
|
|
}
|
2023-08-08 12:45:36 +00:00
|
|
|
androidUnitTest {
|
2024-05-12 15:34:17 +00:00
|
|
|
dependencies {
|
|
|
|
implementation kotlin('test-junit')
|
|
|
|
implementation libs.android.test.junit
|
|
|
|
implementation libs.android.espresso
|
|
|
|
implementation compose.uiTest
|
|
|
|
}
|
|
|
|
}
|
2022-03-10 11:47:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-08-27 12:57:59 +00:00
|
|
|
apply from: "$defaultAndroidSettings"
|
2022-03-10 11:47:37 +00:00
|
|
|
|
|
|
|
java {
|
2023-11-02 13:00:35 +00:00
|
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
|
|
targetCompatibility = JavaVersion.VERSION_17
|
2022-03-10 11:47:37 +00:00
|
|
|
}
|
2023-09-12 08:11:12 +00:00
|
|
|
|
|
|
|
|
2023-09-27 11:59:09 +00:00
|
|
|
//compose {
|
|
|
|
// if (composePluginKotlinVersion != null && !composePluginKotlinVersion.isEmpty()) {
|
|
|
|
// kotlinCompilerPlugin.set(composePluginKotlinVersion)
|
|
|
|
// }
|
|
|
|
//}
|