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 dde8430e67 - Show all commits

Update build.gradle.kts
Some checks failed
Quality Check / Tests (pull_request) Failing after 30s
Build / Build and analyze (push) Failing after 40s
Quality Check / Checkstyle Main (pull_request) Failing after 23s

Jan K9f 2024-09-25 14:57:09 +00:00

View file

@ -74,8 +74,12 @@ dependencies {
tasks.withType<Test> {
useJUnitPlatform()
}
tasks.test {
useJUnitPlatform()
reports {
junitXml.setEnabled(true) // Enable JUnit XML reports
html.setEnabled(true) // Enable HTML reports
}
}
}