try only adding sonar to :lib

This commit is contained in:
Adam 2023-06-04 17:47:18 +02:00
parent f1622d0c0a
commit 1986a8e56d
4 changed files with 11 additions and 31 deletions

View file

@ -20,7 +20,6 @@ import org.jetbrains.dokka.gradle.DokkaTask
plugins { plugins {
buildsrc.conventions.lang.`kotlin-jvm` buildsrc.conventions.lang.`kotlin-jvm`
buildsrc.conventions.publishing buildsrc.conventions.publishing
buildsrc.conventions.sonarqube
id("application") id("application")
id("com.github.ben-manes.versions") id("com.github.ben-manes.versions")
} }
@ -111,7 +110,3 @@ publishing {
} }
} }
} }
sonar {
isSkipProject = true
}

View file

@ -22,14 +22,3 @@ plugins {
group = "net.thauvin.erik" group = "net.thauvin.erik"
version = "1.4.0-SNAPSHOT" version = "1.4.0-SNAPSHOT"
sonarqube {
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.buildDir}/reports/kover/report.xml")
}
}

View file

@ -32,17 +32,17 @@ plugins {
id("org.sonarqube") id("org.sonarqube")
id("org.jetbrains.kotlinx.kover") id("org.jetbrains.kotlinx.kover")
} }
//
//sonarqube { sonarqube {
// properties { properties {
// property("sonar.projectName", rootProject.name) property("sonar.projectName", rootProject.name)
// property("sonar.projectKey", "ethauvin_${rootProject.name}") property("sonar.projectKey", "ethauvin_${rootProject.name}")
// property("sonar.organization", "ethauvin-github") property("sonar.organization", "ethauvin-github")
// property("sonar.host.url", "https://sonarcloud.io") property("sonar.host.url", "https://sonarcloud.io")
// property("sonar.sourceEncoding", "UTF-8") property("sonar.sourceEncoding", "UTF-8")
// property("sonar.coverage.jacoco.xmlReportPaths", "${project.buildDir}/reports/kover/report.xml") property("sonar.coverage.jacoco.xmlReportPaths", "${project.buildDir}/reports/kover/report.xml")
// } }
//} }
tasks.withType<SonarTask>().configureEach { tasks.withType<SonarTask>().configureEach {
// workaround for https://github.com/Kotlin/kotlinx-kover/issues/394 // workaround for https://github.com/Kotlin/kotlinx-kover/issues/394

View file

@ -79,7 +79,3 @@ publishing {
} }
} }
} }
sonar {
// isSkipProject = true
}