Skip to content

Commit

Permalink
revert Java version compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
neetopia committed Dec 19, 2023
1 parent ff5f80f commit 8e01208
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 8e01208

Please sign in to comment.