Fixed Kover reports

This commit is contained in:
Erik C. Thauvin 2023-06-29 11:57:29 -07:00
parent 4b10c6e69b
commit 9b0063dd9c

View file

@ -46,6 +46,17 @@ java {
withSourcesJar() withSourcesJar()
} }
koverReport {
defaults {
xml {
onCheck = true
}
html {
onCheck = true
}
}
}
sonarqube { sonarqube {
properties { properties {
property("sonar.projectKey", "ethauvin_$name") property("sonar.projectKey", "ethauvin_$name")
@ -120,10 +131,6 @@ tasks {
inputs.files(copyToDeploy) inputs.files(copyToDeploy)
mustRunAfter(clean) mustRunAfter(clean)
} }
"sonar" {
dependsOn(koverReport)
}
} }
publishing { publishing {