Potential fix for sonarqube task

This commit is contained in:
Erik C. Thauvin 2023-06-04 11:17:17 -07:00
parent 8bf5bb8349
commit cb460faf2b

View file

@ -35,7 +35,10 @@ sonarqube {
property("sonar.organization", "ethauvin-github")
property("sonar.host.url", "https://sonarcloud.io")
property("sonar.sourceEncoding", "UTF-8")
property("sonar.coverage.jacoco.xmlReportPaths", "${project.buildDir}/reports/kover/report.xml")
property("sonar.sources", files("src/main/kotlin"))
property("sonar.test", files("src/test/kotlin"))
property("sonar.coverage.jacoco.xmlReportPaths", "build/reports/kover/report.xml")
property("sonar.log.level", "DEBUG")
}
}