Skip to content

Commit

Permalink
Merge pull request #405 from p6spy/java6
Browse files Browse the repository at this point in the history
Make p6spy Java 6 compatible again
  • Loading branch information
felixbarny committed Sep 12, 2017
2 parents 174d5ff + 4413a32 commit d636641
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,16 @@ repositories {
}
}

sourceCompatibility = 1.7
targetCompatibility = 1.7
compileJava {
sourceCompatibility = 1.6
targetCompatibility = 1.6
}

compileTestJava {
sourceCompatibility = 1.8
targetCompatibility = 1.8
}

compileJava.options.encoding = 'UTF8'
javadoc.options.encoding = 'UTF8'

Expand Down

0 comments on commit d636641

Please sign in to comment.