Skip to content

Commit

Permalink
Merge pull request #703 from abelsromero/set-java-toolchain-to-enforc…
Browse files Browse the repository at this point in the history
…e-module-minimal-jvm

Set Java Toolchain to enforce module JVM to 8
  • Loading branch information
ysb33r authored Jan 9, 2024
2 parents 196dd88 + 5f041e3 commit f1ca768
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,12 @@ subprojects {
targetCompatibility = project.targetCompatibility
}

java {
toolchain {
languageVersion = JavaLanguageVersion.of(8)
}
}

project.tasks.withType(Test) {
testLogging {
afterSuite { desc, result ->
Expand Down

0 comments on commit f1ca768

Please sign in to comment.