Skip to content

Commit

Permalink
gradle: fix jacoco for java 8
Browse files Browse the repository at this point in the history
gradle/gradle#255

Remove this workaround once merged?
  • Loading branch information
dhalperi committed May 13, 2014
1 parent 5f8837d commit 0d4f5e0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ task wrapper(type: Wrapper) {
gradleVersion = '1.11'
}

jacoco {
toolsVersion = "0.7.1.201405082137"
}

/* We use Java 1.7 */
sourceCompatibility = 1.7
targetCompatibility = 1.7
Expand Down

0 comments on commit 0d4f5e0

Please sign in to comment.