remove Sonarqube, and tidy up build config a little

This commit is contained in:
Adam 2023-07-13 14:17:36 +02:00
parent 60feafa3f9
commit 1b0a5aa208
8 changed files with 29 additions and 104 deletions

View file

@ -17,7 +17,7 @@
plugins {
buildsrc.conventions.base
buildsrc.conventions.sonarqube
id("org.jetbrains.kotlinx.kover")
}
group = "net.thauvin.erik"
@ -27,16 +27,3 @@ dependencies {
kover(projects.urlencoderLib)
kover(projects.urlencoderApp)
}
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")
}
}