Reverted back to Jacoco reports for Sonarqube.

This commit is contained in:
Erik C. Thauvin 2021-11-16 22:16:17 -08:00
parent ede05c39df
commit e462a70147

View file

@ -155,7 +155,6 @@ incrementBuildMeta {
sonarqube { sonarqube {
properties { properties {
property('sonar.jacoco.reportPaths', "$buildDir/reports/kover/report.xml")
property('sonar.organization', 'ethauvin-github') property('sonar.organization', 'ethauvin-github')
property('sonar.projectKey', 'ethauvin_mobibot') property('sonar.projectKey', 'ethauvin_mobibot')
property('sonar.host.url', 'https://sonarcloud.io') property('sonar.host.url', 'https://sonarcloud.io')
@ -175,7 +174,7 @@ jacocoTestReport {
} }
tasks.sonarqube { tasks.sonarqube {
dependsOn 'koverReport' dependsOn 'jacocoTestReport'
} }
task copyToDeploy(type: Copy) { task copyToDeploy(type: Copy) {