MicroUtils/gradle/templates/mppJvmJsLinuxMingwProject.gradle

71 lines
1.5 KiB
Groovy
Raw Normal View History

2022-12-14 22:26:23 +06:00
project.version = "$version"
project.group = "$group"
apply from: "$publish"
2022-12-14 22:26:23 +06:00
kotlin {
jvm {
compilations.main {
kotlinOptions {
2023-11-02 19:00:35 +06:00
jvmTarget = "17"
2022-12-14 22:26:23 +06:00
}
}
}
js (IR) {
2024-08-03 01:47:39 +06:00
browser {
testTask {
useMocha {
timeout = "60000"
}
}
}
nodejs {
testTask {
useMocha {
timeout = "60000"
}
}
}
2022-12-14 22:26:23 +06:00
}
2023-04-18 19:19:38 +06:00
linuxX64()
mingwX64()
2022-12-14 22:26:23 +06:00
sourceSets {
commonMain {
dependencies {
implementation kotlin('stdlib')
2023-10-20 21:53:27 +06:00
api libs.kt.serialization
2022-12-14 22:26:23 +06:00
}
}
commonTest {
dependencies {
implementation kotlin('test-common')
implementation kotlin('test-annotations-common')
2023-08-12 22:37:35 +06:00
implementation libs.kt.coroutines.test
2022-12-14 22:26:23 +06:00
}
}
jvmTest {
dependencies {
implementation kotlin('test-junit')
}
}
jsTest {
dependencies {
implementation kotlin('test-js')
}
}
2023-10-20 21:53:27 +06:00
nativeMain.dependsOn commonMain
linuxX64Main.dependsOn nativeMain
mingwX64Main.dependsOn nativeMain
2023-10-20 21:53:27 +06:00
androidMain.dependsOn jvmMain
2022-12-14 22:26:23 +06:00
}
}
java {
2023-11-02 19:00:35 +06:00
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
2022-12-14 22:26:23 +06:00
}