Skip to content

Commit

Permalink
fix: define Java version in build.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
klaus-sap authored Oct 19, 2023
1 parent 4fba1e4 commit 0727d35
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ subprojects {

[compileJava, compileTestJava]*.options*.compilerArgs = ["-Xlint:none", "-nowarn"]

sourceCompatibility = 1.11
targetCompatibility = 1.11
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11

test {
maxParallelForks = 1
Expand Down

0 comments on commit 0727d35

Please sign in to comment.