Skip to content

Commit

Permalink
Merge pull request #174 from michal-josef-spacek/java
Browse files Browse the repository at this point in the history
GH#169: Fix java compatibility
  • Loading branch information
michal-josef-spacek authored Oct 27, 2021
2 parents c08de1e + 03acdbc commit 5b66cba
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,9 @@ application {
}

java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
// https://docs.gradle.org/current/javadoc/org/gradle/api/JavaVersion.html
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}

gradle.projectsEvaluated {
Expand Down

0 comments on commit 5b66cba

Please sign in to comment.