Compare commits

..

No commits in common. "8339c290b96c88b8cb4090be3d80fafd7a8c1935" and "71effb81c2dd91ed202b3f4b5dcdf00347d44578" have entirely different histories.

2 changed files with 8 additions and 18 deletions

View File

@ -4,13 +4,7 @@ project.group = "$group"
// apply from: "$publishGradlePath"
kotlin {
jvm {
compilations.main {
kotlinOptions {
jvmTarget = "1.8"
}
}
}
jvm()
sourceSets {
commonMain {
@ -34,6 +28,7 @@ kotlin {
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
toolchain {
languageVersion = JavaLanguageVersion.of(8)
}
}

View File

@ -4,13 +4,7 @@ project.group = "$group"
// apply from: "$publishGradlePath"
kotlin {
jvm {
compilations.main {
kotlinOptions {
jvmTarget = "1.8"
}
}
}
jvm()
js (IR) {
browser()
nodejs()
@ -54,8 +48,9 @@ kotlin {
}
java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
toolchain {
languageVersion = JavaLanguageVersion.of(8)
}
}
apply from: "$defaultAndroidSettingsPresetPath"