We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ca12c2 commit ee2f1cdCopy full SHA for ee2f1cd
1 file changed
gradle/coverage.gradle
@@ -15,20 +15,18 @@
15
*/
16
17
def coverageReportDir = file("$buildDir/reports/coverage/jacoco")
18
+def coverageXmlReportFile = file("${coverageReportDir}/jacocoReport.xml")
19
20
jacoco {
21
toolVersion = "0.8.8"
- reportsDir = coverageReportDir
22
}
23
24
-def coverageXmlReportFile = file("${coverageReportDir}/jacocoReport.xml")
25
-
26
jacocoTestReport {
27
reports {
28
- xml.enabled = true
29
- xml.destination = coverageXmlReportFile
30
- html.enabled = true
31
- html.destination = file("${coverageReportDir}/html")
+ xml.required = true
+ xml.outputLocation = coverageXmlReportFile
+ html.required = true
+ html.outputLocation = file("${coverageReportDir}/html")
32
33
34
0 commit comments