2022-12-14 16:26:23 +00:00
|
|
|
project.version = "$version"
|
|
|
|
project.group = "$group"
|
|
|
|
|
2024-08-27 12:57:59 +00:00
|
|
|
apply from: "$publish"
|
2022-12-14 16:26:23 +00:00
|
|
|
|
|
|
|
kotlin {
|
|
|
|
jvm {
|
|
|
|
compilations.main {
|
|
|
|
kotlinOptions {
|
2023-11-02 13:00:35 +00:00
|
|
|
jvmTarget = "17"
|
2022-12-14 16:26:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
js (IR) {
|
2024-08-02 19:47:39 +00:00
|
|
|
browser {
|
|
|
|
testTask {
|
|
|
|
useMocha {
|
|
|
|
timeout = "60000"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
nodejs {
|
|
|
|
testTask {
|
|
|
|
useMocha {
|
|
|
|
timeout = "60000"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-12-14 16:26:23 +00:00
|
|
|
}
|
2023-04-18 13:19:38 +00:00
|
|
|
linuxX64()
|
|
|
|
mingwX64()
|
2022-12-14 16:26:23 +00:00
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
|
|
|
implementation kotlin('stdlib')
|
2023-10-20 15:53:27 +00:00
|
|
|
api libs.kt.serialization
|
2022-12-14 16:26:23 +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-12-14 16:26:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
jvmTest {
|
|
|
|
dependencies {
|
|
|
|
implementation kotlin('test-junit')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
jsTest {
|
|
|
|
dependencies {
|
|
|
|
implementation kotlin('test-js')
|
|
|
|
}
|
|
|
|
}
|
2023-10-20 15:53:27 +00:00
|
|
|
|
2024-05-12 13:17:16 +00:00
|
|
|
nativeMain.dependsOn commonMain
|
|
|
|
linuxX64Main.dependsOn nativeMain
|
|
|
|
mingwX64Main.dependsOn nativeMain
|
|
|
|
|
2023-10-20 15:53:27 +00:00
|
|
|
androidMain.dependsOn jvmMain
|
2022-12-14 16:26:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
java {
|
2023-11-02 13:00:35 +00:00
|
|
|
sourceCompatibility = JavaVersion.VERSION_17
|
|
|
|
targetCompatibility = JavaVersion.VERSION_17
|
2022-12-14 16:26:23 +00:00
|
|
|
}
|