Fixed jacoco reports.

This commit is contained in:
Erik C. Thauvin 2019-04-03 23:34:06 -07:00
parent 2918c48a3e
commit 53f0f7df8c

View file

@ -113,6 +113,7 @@ sonarqube {
jacocoTestReport { jacocoTestReport {
reports { reports {
html.enabled true html.enabled true
xml.enabled = true
} }
} }
@ -145,3 +146,7 @@ task release(dependsOn: ['wrapper', 'clean', 'deploy']) {
group = 'Publishing' group = 'Publishing'
description = 'Releases new version.' description = 'Releases new version.'
} }
tasks.sonarqube {
dependsOn("jacocoTestReport")
}