Skip to content

Commit e894cec

Browse files
committed
JvmTarget to 17 for the build logic
1 parent c6c9339 commit e894cec

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build-support/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,13 +76,13 @@ allprojects {
7676
}
7777

7878
tasks.withType<JavaCompile>().configureEach {
79-
sourceCompatibility = JavaVersion.VERSION_11.toString()
80-
targetCompatibility = JavaVersion.VERSION_11.toString()
79+
sourceCompatibility = JavaVersion.VERSION_17.toString()
80+
targetCompatibility = JavaVersion.VERSION_17.toString()
8181
}
8282

8383
tasks.withType<KotlinCompile>().configureEach {
8484
compilerOptions {
85-
jvmTarget.set(JvmTarget.JVM_11)
85+
jvmTarget.set(JvmTarget.JVM_17)
8686
freeCompilerArgs.add("-Xjvm-default=all")
8787
}
8888
}

0 commit comments

Comments
 (0)