Skip to content

Commit

Permalink
Compile using JDK 23 (#1446)
Browse files Browse the repository at this point in the history
To get the latest javac bug fixes
  • Loading branch information
msridhar authored Sep 22, 2024
1 parent 8cd4de3 commit 2bacf50
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ dependencies {

tasks.withType<JavaCompile>().configureEach {
// Always compile with a recent JDK version, to get the latest bug fixes in the compiler toolchain
javaCompiler = javaToolchains.compilerFor { languageVersion = JavaLanguageVersion.of(22) }
javaCompiler = javaToolchains.compilerFor { languageVersion = JavaLanguageVersion.of(23) }
// Generate JDK 11 bytecodes; that is the minimum version supported by WALA
options.release = 11
options.errorprone {
Expand Down

0 comments on commit 2bacf50

Please sign in to comment.