We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29831e8 commit b140667Copy full SHA for b140667
1 file changed
build.gradle.kts
@@ -1,4 +1,5 @@
1
import org.jetbrains.kotlin.gradle.ExperimentalWasmDsl
2
+import org.jetbrains.kotlin.gradle.dsl.JvmTarget
3
4
plugins {
5
alias(libs.plugins.kotlinMultiplatform)
@@ -9,7 +10,7 @@ plugins {
9
10
}
11
12
group = "nl.jacobras"
-version = "1.12.1"
13
+version = "1.12.2"
14
15
mavenPublishing {
16
publishToMavenCentral()
@@ -75,6 +76,13 @@ kotlin {
75
76
useJUnitPlatform()
77
78
79
+ compilations.all {
80
+ compileTaskProvider.configure {
81
+ compilerOptions {
82
+ jvmTarget = JvmTarget.JVM_17
83
+ }
84
85
86
87
88
sourceSets {
0 commit comments