Skip to content

Commit

Permalink
disabling legacy unsupported targets
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanfallet committed Jun 2, 2024
1 parent a08e807 commit 63215c7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Versions.kt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
object Versions {
const val version = "0.13.0"

const val kotlin = "1.8.0"
const val kotlin = "1.9.0"
const val serialization = "1.6.3"

const val mavenCentralPublish = "1.0.0-dev-3"
Expand Down
2 changes: 0 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
# style guide
kotlin.code.style=official
kotlin.incremental.multiplatform=true
kotlin.js.compiler=both
kotlin.native.ignoreDisabledTargets=true
systemProp.org.gradle.internal.publish.checksums.insecure=true
org.gradle.vfs.watch=true

kotlin.mpp.enableCompatibilityMetadataVariant=true
kotlin.mpp.enableCInteropCommonization=true
10 changes: 5 additions & 5 deletions yamlkt/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ kotlin {
kotlinOptions.jvmTarget = "1.8"
}
}
js(BOTH) {
js {
compilations.all {
kotlinOptions {
moduleKind = "umd"
Expand Down Expand Up @@ -98,11 +98,11 @@ kotlin {
"watchosDeviceArm64",

// Deprecated:
"iosArm32",
"watchosX86",
// "iosArm32",
// "watchosX86",
// "wasm32",
"mingwX86",
"linuxArm32Hfp",
// "mingwX86",
// "linuxArm32Hfp",
// "linuxMips32",
// "linuxMipsel32",
).flatMap { it.split(", ") }
Expand Down

0 comments on commit 63215c7

Please sign in to comment.