Skip to content

Commit

Permalink
Force compile with java 7
Browse files Browse the repository at this point in the history
  • Loading branch information
vitorprado committed Feb 18, 2016
1 parent 764c24c commit ebc59b4
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion maybe/build.gradle
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
apply plugin: 'java'
apply plugin: 'checkstyle'

version = '0.0'

dependencies {
testCompile 'junit:junit:4.12'
}

checkstyle {
configFile file('../config/checkstyle/checkstyle.xml')
configFile file('../config/checkstyle/checkstyle.xml')
}

compileJava {
sourceCompatibility = 1.7
targetCompatibility = 1.7
}

0 comments on commit ebc59b4

Please sign in to comment.