Skip to content

Commit

Permalink
Merge pull request #11 from usefulness/java_8_compatibility
Browse files Browse the repository at this point in the history
Add Java 8 Compatibility
  • Loading branch information
mateuszkwiecinski authored Feb 27, 2021
2 parents 9aa1d9f + 5e003ee commit cf5f4e5
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,12 @@ allprojects {
apiVersion = '1.3'
}
}

pluginManager.withPlugin("java") {
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(8))
}
}
}
}

0 comments on commit cf5f4e5

Please sign in to comment.