Skip to content

Commit d14620d

Browse files
Update Kotlin to 1.9.10
Also - remove obsolete HMPP properties - remove legacy JS backend target
1 parent 483e920 commit d14620d

File tree

2 files changed

+3
-11
lines changed

2 files changed

+3
-11
lines changed

core/build.gradle.kts

+2-3
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ kotlin {
2121
target("mingwX64")
2222
}
2323

24-
js {
24+
js(IR) {
2525
moduleName = "${rootProject.name}-${project.name}"
2626
nodejs {
2727
}
@@ -76,8 +76,7 @@ kotlin {
7676
kotlin.setSrcDirs(listOf("$name/src"))
7777
resources.setSrcDirs(listOf("$name/resources"))
7878
languageSettings.apply {
79-
useExperimentalAnnotation("kotlin.Experimental")
80-
useExperimentalAnnotation("kotlinx.cli.ExperimentalCli")
79+
optIn("kotlinx.cli.ExperimentalCli")
8180
}
8281
}
8382
}

gradle.properties

+1-8
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,6 @@ versionSuffix=SNAPSHOT
44
kotlin.code.style=official
55

66
infraVersion = 0.3.0-dev-64
7-
kotlinVersion = 1.6.0
7+
kotlinVersion = 1.9.10
88

99
kotlin.incremental.multiplatform=true
10-
11-
kotlin.js.compiler=both
12-
13-
# HMPP Flags. Remove after upgrade to 1.7.0
14-
kotlin.mpp.enableGranularSourceSetsMetadata=true
15-
kotlin.native.enableDependencyPropagation=false
16-
kotlin.mpp.enableCompatibilityMetadataVariant=true

0 commit comments

Comments
 (0)