Hello.
Code Coverage for my Java / Gradle project hosted on Github and linked to SonarCloud doesnt calculate.
Measures
0 Security Hotspots
0.0% Coverage on New Code
0.0% Duplication on New Code
(Output fromt the sonarcloud bot comment on Github PR )
The project page on SonarCloud says:
Coverage
A few extra steps are needed for SonarCloud to analyze your code coverage.
Set up coverage analysis
Although I have all setup according to the linked docs.
plugins {
id "jacoco"
id "org.sonarqube" version "3.5.0.2730”
}
jacocoTestReport {
reports {
xml.required = true
}
}
I contacted through help form, but I’ve been redirected to ask here, on community forum.
How can I debug it locally, to check where the problem lies?
If that’s not possible how can I get a technical support instead, so someone on the sonarcloud looks into my project and checks if there’s anything wrong with it instead?