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

View File

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