When I generate the code coerage report using jacoco plugin using gradle task. The html file has percentage of code that's covered. But the xml file dosn't have any percentage.
The gradle task I have in the .gradle file.
jacocoTestReport { dependsOn test // tests are required to run before generating the report
reports {
xml.enabled = true
html.enabled = true
}
}