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

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

Jan K9f 2024-09-25 14:55:46 +00:00

View file

@ -75,7 +75,7 @@ dependencies {
tasks.withType<Test> {
useJUnitPlatform()
reports {
junitXml.isEnabled = true // Enable JUnit XML reports
html.isEnabled = true // Enable HTML reports
junitXml.setEnabled(true) // Enable JUnit XML reports
html.setEnabled(true) // Enable HTML reports
}
}