gradle-print-coverage-plugin
gradle-print-coverage-plugin copied to clipboard
The readme should note that you need Jacoco XML report to be activated
I had to add this settings to my build.gradle for this plugin to work:
jacocoTestReport {
reports {
xml.enabled true
}
}
otherwise I get the message Jacoco test report is missing.