added sonarqube config #41

Merged
kasun merged 27 commits from enhancement/Configure-Sonarqube-server into main 2026-06-27 03:23:58 +02:00
Showing only changes of commit 597c941994 - Show all commits
+13
View File
@@ -65,3 +65,16 @@ tasks.withType<JavaCompile> {
tasks.withType<Test> {
useJUnitPlatform()
}
tasks.withType<Test> {
useJUnitPlatform()
// log exact test failures, standard out, and errors in CI
testLogging {
events("failed", "standardError")
exceptionFormat = org.gradle.api.tasks.testing.logging.TestExceptionFormat.FULL
showExceptions = true
showCauses = true
showStackTraces = true
}
}