From 2bfeedc7a95d8c74f8ff85c1d5d78aaa29745892 Mon Sep 17 00:00:00 2001 From: Christian Basler Date: Wed, 3 Feb 2016 17:32:04 +0100 Subject: [PATCH] Update build.gradle Another try for codecov.io --- build.gradle | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index b944a14..040afda 100644 --- a/build.gradle +++ b/build.gradle @@ -2,6 +2,7 @@ subprojects { apply plugin: 'java' apply plugin: 'maven' apply plugin: 'signing' + apply plugin: 'jacoco' sourceCompatibility = 1.7 group = 'ch.dissem.jabit' @@ -79,4 +80,13 @@ subprojects { } } } -} \ No newline at end of file + + jacocoTestReport { + reports { + xml.enabled = true + html.enabled = true + } + } + + check.dependsOn jacocoTestReport +}