Skip to content

Commit

Permalink
Remove or replace reportPath (#926)
Browse files Browse the repository at this point in the history
  • Loading branch information
Reamer authored Mar 4, 2024
1 parent 8fdec59 commit d3456c8
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion examples/single-module-maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<sonar.host.url>http://localhost:9000/</sonar.host.url>
<sonar.dependencyCheck.reportPath>target/dependency-check-report.xml</sonar.dependencyCheck.reportPath>
<sonar.dependencyCheck.htmlReportPath>target/dependency-check-report.html</sonar.dependencyCheck.htmlReportPath>
<sonar.dependencyCheck.jsonReportPath>target/dependency-check-report.json</sonar.dependencyCheck.jsonReportPath>
<maven.compiler.source>1.6</maven.compiler.source>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ dependencyCheck {

sonarqube {
properties {
property 'sonar.dependencyCheck.reportPath', 'build/reports/dependency-check-report.xml'
property 'sonar.dependencyCheck.jsonReportPath', 'build/reports/dependency-check-report.json'
property 'sonar.dependencyCheck.htmlReportPath', 'build/reports/dependency-check-report.html'
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ dependencyCheck {

sonarqube {
properties {
property("sonar.dependencyCheck.reportPath", "build/reports/dependency-check-report.xml")
property("sonar.dependencyCheck.jsonReportPath", "build/reports/dependency-check-report.json")
property("sonar.dependencyCheck.htmlReportPath", "build/reports/dependency-check-report.html")
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<sonar.host.url>http://localhost:9000/</sonar.host.url>
<sonar.sources>src/main/java</sonar.sources>
<sonar.dependencyCheck.reportPath>${dependency.check.report.dir}/dependency-check-report.xml</sonar.dependencyCheck.reportPath>
<sonar.dependencyCheck.jsonReportPath>${dependency.check.report.dir}/dependency-check-report.json</sonar.dependencyCheck.jsonReportPath>
<sonar.dependencyCheck.htmlReportPath>${dependency.check.report.dir}/dependency-check-report.html</sonar.dependencyCheck.htmlReportPath>
</properties>

Expand Down

0 comments on commit d3456c8

Please sign in to comment.