Update build.gradle

Another try for codecov.io
This commit is contained in:
Christian Basler 2016-02-03 17:32:04 +01:00
parent ea700755b6
commit 2bfeedc7a9
1 changed files with 11 additions and 1 deletions

View File

@ -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 {
}
}
}
}
jacocoTestReport {
reports {
xml.enabled = true
html.enabled = true
}
}
check.dependsOn jacocoTestReport
}