Skip to content

Commit b140667

Browse files
committed
Set JVM compatibility to 17
1 parent 29831e8 commit b140667

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

build.gradle.kts

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import org.jetbrains.kotlin.gradle.ExperimentalWasmDsl
2+
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
23

34
plugins {
45
alias(libs.plugins.kotlinMultiplatform)
@@ -9,7 +10,7 @@ plugins {
910
}
1011

1112
group = "nl.jacobras"
12-
version = "1.12.1"
13+
version = "1.12.2"
1314

1415
mavenPublishing {
1516
publishToMavenCentral()
@@ -75,6 +76,13 @@ kotlin {
7576
useJUnitPlatform()
7677
}
7778
}
79+
compilations.all {
80+
compileTaskProvider.configure {
81+
compilerOptions {
82+
jvmTarget = JvmTarget.JVM_17
83+
}
84+
}
85+
}
7886
}
7987

8088
sourceSets {

0 commit comments

Comments
 (0)