Moved Sonarqube to GitHub action.

This commit is contained in:
Erik C. Thauvin 2021-05-19 22:56:46 -07:00
parent 79945ad2df
commit ba0b56f9e2
6 changed files with 49 additions and 14 deletions

View file

@ -134,6 +134,7 @@ javadoc {
test {
testLogging {
exceptionFormat "full"
events "passed", "skipped", "failed"
}
useTestNG()
@ -197,7 +198,9 @@ jacocoTestReport {
sonarqube {
properties {
property("sonar.projectKey", "ethauvin_semver")
property "sonar.organization", "ethauvin-github"
property "sonar.projectKey", "ethauvin_semver"
property "sonar.host.url", "https://sonarcloud.io"
property("sonar.sourceEncoding", "UTF-8")
}
}