File tree Expand file tree Collapse file tree
.github/actions/build-setup Expand file tree Collapse file tree Original file line number Diff line number Diff line change 88 uses : actions/setup-java@v4
99 with :
1010 distribution : ' temurin'
11- java-version : 24 # Can't upgrade to 25 before Detekt 2.0 is out.
11+ java-version : 23 # Can't upgrade to 25 before Detekt 2.0 is out.
1212
1313 - name : Setup Android SDK
1414 uses : android-actions/setup-android@v3
Original file line number Diff line number Diff line change 11import org.jetbrains.kotlin.gradle.ExperimentalKotlinGradlePluginApi
22import org.jetbrains.kotlin.gradle.ExperimentalWasmDsl
3+ import org.jetbrains.kotlin.gradle.dsl.JvmTarget
34
45plugins {
56 kotlin(" multiplatform" )
@@ -11,7 +12,7 @@ plugins {
1112}
1213
1314group = " nl.jacobras"
14- version = " 3.1.0 "
15+ version = " 3.1.1 "
1516
1617mavenPublishing {
1718 publishToMavenCentral()
@@ -63,11 +64,19 @@ kotlin {
6364
6465 androidTarget {
6566 publishLibraryVariants(" release" )
67+
68+ compilerOptions {
69+ jvmTarget = JvmTarget .JVM_17
70+ }
6671 }
6772 iosX64()
6873 iosArm64()
6974 iosSimulatorArm64()
70- jvm(" desktop" )
75+ jvm(" desktop" ) {
76+ compilerOptions {
77+ jvmTarget = JvmTarget .JVM_17
78+ }
79+ }
7180 js { browser() }
7281 wasmJs { browser() }
7382
You can’t perform that action at this time.
0 commit comments