fix: Fix Sonarqube java version #17

Merged
jank merged 15 commits from fix/sonarqube into main 2024-09-25 15:15:46 +00:00
Showing only changes of commit a0286d5047 - Show all commits

@ -8,8 +8,10 @@ plugins {
} }
tasks.jacocoTestReport { tasks.jacocoTestReport {
dependsOn(tasks.test) // Ensure tests are run before generating the report
reports { reports {
xml.required = false xml.isEnabled = true // Enable XML report
html.isEnabled = true // Enable HTML report
} }
} }
@ -74,4 +76,5 @@ dependencies {
tasks.withType<Test> { tasks.withType<Test> {
useJUnitPlatform() useJUnitPlatform()
finalizedBy(tasks.jacocoTestReport) // Run JaCoCo report after tests
} }