Skip to content

Commit

Permalink
Fix #323 Switch to JVM 21 as required by 242 platform
Browse files Browse the repository at this point in the history
  • Loading branch information
lancelote committed Aug 29, 2024
1 parent 7031320 commit 9c18907
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ dependencies {
}

java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}

intellijPlatform {
Expand All @@ -52,7 +52,7 @@ intellijPlatform {
tasks {
withType<KotlinCompile> {
compilerOptions {
jvmTarget = JvmTarget.JVM_17
jvmTarget = JvmTarget.JVM_21
languageVersion = KotlinVersion.DEFAULT
apiVersion = KotlinVersion.KOTLIN_1_9
}
Expand Down

0 comments on commit 9c18907

Please sign in to comment.