Skip to content

Commit

Permalink
fix Java compatibility level
Browse files Browse the repository at this point in the history
  • Loading branch information
neetopia committed Jan 19, 2024
1 parent 94aea1b commit c6135da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Expand Up @@ -95,8 +95,8 @@ subprojects {
}

tasks.withType<JavaCompile>().configureEach {
sourceCompatibility = JavaVersion.VERSION_11.toString()
targetCompatibility = JavaVersion.VERSION_11.toString()
sourceCompatibility = JavaVersion.VERSION_1_8.toString()
targetCompatibility = JavaVersion.VERSION_1_8.toString()
javaCompiler.set(
javaToolchains.compilerFor {
languageVersion.set(JavaLanguageVersion.of(17))
Expand Down

0 comments on commit c6135da

Please sign in to comment.