diff options
author | Dominik Stadler <centic@apache.org> | 2020-10-25 16:07:44 +0000 |
---|---|---|
committer | Dominik Stadler <centic@apache.org> | 2020-10-25 16:07:44 +0000 |
commit | 781fa3815773f36597f1279f921671d0bd380e86 (patch) | |
tree | 716c2e4bb9b41ffeb57e96e43a6c75bd80fb6feb /build.gradle | |
parent | 8089682957b42a3ff5e7be66ad2b266e8ed45039 (diff) | |
download | poi-781fa3815773f36597f1279f921671d0bd380e86.tar.gz poi-781fa3815773f36597f1279f921671d0bd380e86.zip |
Enable XML reporting for JaCoCo for the Sonar Gradle plugin
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1882843 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.gradle')
-rw-r--r-- | build.gradle | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/build.gradle b/build.gradle index ff91adced1..cd8420d1bd 100644 --- a/build.gradle +++ b/build.gradle @@ -170,6 +170,12 @@ subprojects { toolVersion = '0.8.6' } + jacocoTestReport { + reports { + xml.enabled true + } + } + // ensure the build-dir exists projectDir.mkdirs() |