Skip to content

Commit

Permalink
#309 Make compiled Java classes compatible with Java SE 8
Browse files Browse the repository at this point in the history
  • Loading branch information
ascheman committed Oct 21, 2023
1 parent 6a57b46 commit eb3adf2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,11 @@ configure(subprojects) {

description "${rootProject.description} - Module ${project.name}"

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

// The CodeNarc plugin performs quality checks on your project’s
// Groovy source files using CodeNarc and generates reports from these checks.
Expand Down

0 comments on commit eb3adf2

Please sign in to comment.