1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
Description: Disables Jacoco to run the tests
Author: Emmanuel Bourg <ebourg@apache.org>
Forwarded: not-needed
--- a/build.gradle
+++ b/build.gradle
@@ -1,5 +1,4 @@
apply plugin: 'java-library'
-apply plugin: 'jacoco'
apply plugin: 'maven-publish'
apply plugin: 'signing'
@@ -103,14 +102,6 @@
useTestNG()
}
-jacocoTestReport {
- reports {
- xml.enabled true
- }
-}
-
-check.dependsOn 'jacocoTestReport'
-
if (project.hasProperty('ossrhUsername') && project.hasProperty('ossrhPassword')) {
publishing {
repositories {
|