Skip to content

Commit 9c18907

Browse files
committed
Fix #323 Switch to JVM 21 as required by 242 platform
1 parent 7031320 commit 9c18907

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ dependencies {
3333
}
3434

3535
java {
36-
sourceCompatibility = JavaVersion.VERSION_17
37-
targetCompatibility = JavaVersion.VERSION_17
36+
sourceCompatibility = JavaVersion.VERSION_21
37+
targetCompatibility = JavaVersion.VERSION_21
3838
}
3939

4040
intellijPlatform {
@@ -52,7 +52,7 @@ intellijPlatform {
5252
tasks {
5353
withType<KotlinCompile> {
5454
compilerOptions {
55-
jvmTarget = JvmTarget.JVM_17
55+
jvmTarget = JvmTarget.JVM_21
5656
languageVersion = KotlinVersion.DEFAULT
5757
apiVersion = KotlinVersion.KOTLIN_1_9
5858
}

0 commit comments

Comments
 (0)