MicroUtils/mppJvmJsLinuxMingwProject.g...

66 lines
1.4 KiB
Groovy
Raw Normal View History

2022-12-14 16:26:23 +00:00
project.version = "$version"
project.group = "$group"
apply from: "$publishGradlePath"
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) {
browser()
nodejs()
}
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')
implementation kotlin('test-junit')
}
}
2023-10-20 15:53:27 +00:00
mingwX64Test {
dependencies {
implementation kotlin('test-junit')
}
}
linuxX64Test {
dependencies {
implementation kotlin('test-junit')
}
}
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
}