Repository: tapestry-5 Updated Branches: refs/heads/master 847403b0e -> fbfbf6fc5
TAP5-1923: have Jenkins generate JaCoCo test reports Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/fbfbf6fc Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/fbfbf6fc Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/fbfbf6fc Branch: refs/heads/master Commit: fbfbf6fc5c56e10b284b0d206ba2b93d7718561f Parents: 847403b Author: Jochen Kemnade <[email protected]> Authored: Fri Feb 20 11:47:12 2015 +0100 Committer: Jochen Kemnade <[email protected]> Committed: Fri Feb 20 11:47:12 2015 +0100 ---------------------------------------------------------------------- build.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/fbfbf6fc/build.gradle ---------------------------------------------------------------------- diff --git a/build.gradle b/build.gradle index a962fe3..7ccefb6 100755 --- a/build.gradle +++ b/build.gradle @@ -151,6 +151,7 @@ subprojects { apply plugin: "groovy" // mostly for testing apply plugin: "maven" // for deployment apply plugin: "project-report" + apply plugin: "jacoco" sourceCompatibility = "1.6" targetCompatibility = "1.6" @@ -397,7 +398,7 @@ dependencies { } task continuousIntegration { - dependsOn subprojects.build, aggregateJavadoc + dependsOn subprojects.build, aggregateJavadoc, jacocoTestReport description "Task executed on Jenkins CI server after SVN commits" }
