Skip to content

Commit

Permalink
Enforce java 1.8 compiler
Browse files Browse the repository at this point in the history
To hopefully fix the Travis build
  • Loading branch information
Coen Houtman committed Sep 10, 2020
1 parent 838209d commit 30f9d66
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ if (project.hasProperty('newVersion')) {
project.version = '1.0.33-SNAPSHOT'
}

java {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}

repositories {
mavenCentral()
mavenLocal()
Expand Down

0 comments on commit 30f9d66

Please sign in to comment.