Analyze Java 13 via Gradle

Hi Gennady,

About importing the JaCoCo report, the last SonarQube version that support JaCoCo report binary format (*.exec files) was SonarQube 8.1. Since SonarQube 8.2 only the XML format is supported.
To generated this format, you need to add in your build.gradle:

jacocoTestReport {
    reports {
        xml.enabled true
    }
}

And you can see how to invoke jacocoTestReport here: [Coverage & Test Data] Importing JaCoCo coverage report in XML format

1 Like