Skip to content

Commit

Permalink
Merge pull request #4 from miho/gradle-fixes
Browse files Browse the repository at this point in the history
adding sourceCompatibility and encoding config to build.gradle
  • Loading branch information
miho committed Feb 25, 2014
2 parents c7879f5 + 2e839fc commit 67738b8
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
@@ -1,3 +1,8 @@
// all projects must be comatible with the java version specified here
// overriding this property in subprojects is not allowed
sourceCompatibility = '1.8'
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'

task wrapper(type: Wrapper) {
gradleVersion = '1.11'
}
Expand Down

0 comments on commit 67738b8

Please sign in to comment.