Skip to content

Commit

Permalink
Reconnect Sonar
Browse files Browse the repository at this point in the history
  • Loading branch information
Karl DeBisschop committed Jul 23, 2024
1 parent 931a7d6 commit cd9812f
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,19 @@ sonarqube {
properties {
property "sonar.projectKey", "kdebisschop_rundeck-nexus3-optionvalue-plugin"
property "sonar.organization", "kdebisschop"
property "sonar.coverage.jacoco.xmlReportPaths", "build/reports/jacoco/test/jacocoTestReport.xml"
property "sonar.host.url", "https://sonarcloud.io"
}
}

test {
finalizedBy jacocoTestReport
}
jacocoTestReport {
dependsOn test
reports {
xml.required
csv.required
xml.required = true
csv.required = true
html.destination file("${buildDir}/jacocoHtml")
}
}
Expand Down

0 comments on commit cd9812f

Please sign in to comment.