build: upgrade jacoco This version works with Java 8 allowing us to build âdevelopâ with it. Another commit on the 3.0 branch will follow that reactivate jacoco with the same version.
Project: http://git-wip-us.apache.org/repos/asf/zest-qi4j/repo Commit: http://git-wip-us.apache.org/repos/asf/zest-qi4j/commit/3ed48968 Tree: http://git-wip-us.apache.org/repos/asf/zest-qi4j/tree/3ed48968 Diff: http://git-wip-us.apache.org/repos/asf/zest-qi4j/diff/3ed48968 Branch: refs/heads/master Commit: 3ed48968e66cd36f4a96dd931448d767e18875a6 Parents: b0b1ee5 Author: Paul Merlin <[email protected]> Authored: Sat Jan 24 13:40:39 2015 +0100 Committer: Paul Merlin <[email protected]> Committed: Sat Jan 24 13:40:39 2015 +0100 ---------------------------------------------------------------------- build.gradle | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/zest-qi4j/blob/3ed48968/build.gradle ---------------------------------------------------------------------- diff --git a/build.gradle b/build.gradle index 579e86f..01a3ed9 100644 --- a/build.gradle +++ b/build.gradle @@ -258,6 +258,9 @@ allprojects { } } } + jacoco { + toolVersion = '0.7.2.201409121644' + } // // Create checkstyle report // task checkstyleReport( type: Xslt, dependsOn: check ) { @@ -343,7 +346,7 @@ configurations { jacoco } dependencies { - jacoco 'org.jacoco:org.jacoco.ant:0.7.1.201405082137' + jacoco 'org.jacoco:org.jacoco.ant:0.7.2.201409121644' } // Generate a global code codeverage report task coverageReport {
