-
Notifications
You must be signed in to change notification settings - Fork 145
Description
Describe the bug
#755 removed the property sonar.dependencyCheck.reportPath.
However, there are still multiple references to this property:
<sonar.dependencyCheck.reportPath>target/dependency-check-report.xml</sonar.dependencyCheck.reportPath> dependency-check-sonar-plugin/sonar-dependency-check-plugin/src/test/resources/reason/build.gradle
Line 38 in cff3469
property 'sonar.dependencyCheck.reportPath', 'build/reports/dependency-check-report.xml' dependency-check-sonar-plugin/sonar-dependency-check-plugin/src/test/resources/reason/pom.xml
Line 28 in cff3469
<sonar.dependencyCheck.reportPath>${dependency.check.report.dir}/dependency-check-report.xml</sonar.dependencyCheck.reportPath> Line 31 in cff3469
property("sonar.dependencyCheck.reportPath", "build/reports/dependency-check-report.xml")
Is there maybe also something wrong with the test setup since the usage of that removed property is apparently not causing a test failure?
Expected behavior
There should not be any references to sonar.dependencyCheck.reportPath anymore; or they should at least say that only older versions of the plugin supported this property.