Upgraded to Kotlin 1.9.0

Removed Sonar plugin
This commit is contained in:
Erik C. Thauvin 2023-07-13 12:12:53 -07:00
parent 4df6d3f599
commit bcf59ee0e7
11 changed files with 14 additions and 68 deletions

View file

@ -17,7 +17,6 @@
plugins {
buildsrc.conventions.base
buildsrc.conventions.sonarqube
}
group = "net.thauvin.erik"
@ -27,16 +26,3 @@ dependencies {
kover(projects.lib)
kover(projects.app)
}
sonar {
properties {
property("sonar.projectName", rootProject.name)
property("sonar.projectKey", "ethauvin_${rootProject.name}")
property("sonar.organization", "ethauvin-github")
property("sonar.host.url", "https://sonarcloud.io")
property("sonar.sourceEncoding", "UTF-8")
property("sonar.coverage.jacoco.xmlReportPaths",
"${project.rootDir}/lib/build/reports/kover/report.xml,${project.rootDir}/app/build/reports/kover/report.xml")
property("sonar.log.level", "DEBUG")
}
}