return ImmutableList.of(
PropertyDefinition.builder("sonar.coverage.exclusions")
.category(CoreProperties.CATEGORY_EXCLUSIONS)
- .subCategory(CoreProperties.CATEGORY_CODE_COVERAGE) // TODO Replace with dedicated subcat
+ .subCategory(CoreProperties.SUBCATEGORY_COVERAGE_EXCLUSIONS)
.type(PropertyType.STRING)
.multiValues(true)
.onQualifiers(Qualifiers.PROJECT, Qualifiers.MODULE)
property.category.exclusions.issues.description=Configure which issues should not be reported.
property.category.exclusions.duplications=Duplications
property.category.exclusions.duplications.description=Configure files which should not be checked for duplicated code.
-property.category.exclusions.codeCoverage=Code Coverage
-property.category.exclusions.codeCoverage.description=Configure files which should be considered for code coverage.
+property.category.exclusions.coverage=Code Coverage
+property.category.exclusions.coverage.description=Configure files which should be considered for code coverage.
property.sonar.coverage.exclusions.name=Coverage Exclusions
property.sonar.coverage.exclusions.description=Patterns used to exclude some files from coverage report.
property.error.notBoolean=Valid options are "true" and "false"