Fixed Kover reports

This commit is contained in:
Erik C. Thauvin 2023-06-29 11:52:46 -07:00
parent 46dbe3d201
commit b88bb8cdc2

View file

@ -51,6 +51,17 @@ detekt {
baseline = project.rootDir.resolve("config/detekt/baseline.xml")
}
koverReport {
defaults {
xml {
onCheck = true
}
html {
onCheck = true
}
}
}
sonarqube {
properties {
property("sonar.projectKey", "ethauvin_$name")
@ -140,9 +151,6 @@ tasks {
dependsOn(wrapper, "deploy", gitTag, publishToMavenLocal)
}
"sonar" {
dependsOn(koverReport)
}
}
publishing {