Skip to content

Commit

Permalink
fix(build/minestom): use Java 17 as compatibility level
Browse files Browse the repository at this point in the history
  • Loading branch information
Cubxity committed Oct 24, 2021
1 parent 45475b6 commit 3b8a77a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions platforms/minestom/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ dependencies {
}

java {
targetCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_17
}

tasks {
Expand All @@ -41,7 +41,7 @@ tasks {
}
compileKotlin {
kotlinOptions {
jvmTarget = "11"
jvmTarget = "17"
}
}
processResources {
Expand Down

0 comments on commit 3b8a77a

Please sign in to comment.