MicroUtils/mppJvmJsLinuxMingwLinuxArm64Project.gradle

62 lines
1.3 KiB
Groovy
Raw Permalink Normal View History

2020-09-15 18:57:41 +06:00
project.version = "$version"
project.group = "$group"
2020-09-27 20:25:42 +06:00
apply from: "$publishGradlePath"
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) {
2020-10-16 17:59:51 +06:00
browser()
2020-09-15 18:57:41 +06:00
nodejs()
}
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 {
implementation kotlin('test-common')
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
2020-09-15 18:57:41 +06:00
jvmTest {
dependencies {
implementation kotlin('test-junit')
}
}
jsTest {
dependencies {
implementation kotlin('test-js')
implementation kotlin('test-junit')
}
}
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
java {
2023-11-02 19:00:35 +06:00
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}