--
You received this message because you are subscribed to the Google Groups "SonarQube" group.
To unsubscribe from this group and stop receiving emails from it, send an email to sonarqube+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/sonarqube/2330aca1-2538-497c-a38a-a1b8de50320c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Hi David,What's at play here is not the version of the scanner but the version of SonarJava analyzer you are running : what is that version ?
Hi David,What's at play here is not the version of the scanner but the version of SonarJava analyzer you are running : what is that version ?
Hi David,What's at play here is not the version of the scanner but the version of SonarJava analyzer you are running : what is that version ?
if(sonarQubeVersion.isGreaterThanOrEqual(SQ_6_2)) {
properties.add(
PropertyDefinition.builder(JacocoConfiguration.REPORT_PATHS_PROPERTY)
.defaultValue(JacocoConfiguration.REPORT_PATHS_DEFAULT_VALUE)
.category(JavaConstants.JAVA_CATEGORY)
.subCategory(subCategory)
.name("JaCoCo Reports")
.description("Path to the JaCoCo report files containing coverage data by unit tests. The path may be absolute or relative to the project base directory.")
.onQualifiers(Qualifiers.PROJECT, Qualifiers.MODULE)
.build()
);
} else {
To view this discussion on the web visit https://groups.google.com/d/msgid/sonarqube/528319c4-b53e-4de9-b477-f9c9a7b788a4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To view this discussion on the web visit https://groups.google.com/d/msgid/sonarqube/a813ed16-6d71-4a65-9287-e599f8fc2a57%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Senior Developer