From c7e534a4ee84e86ab4f11c2fd9f3e77e340c838b Mon Sep 17 00:00:00 2001 From: Thilo Schwarz Date: Mon, 21 Apr 2025 15:27:36 +0200 Subject: [PATCH] Update SonarQube configuration in GitLab CI pipeline Removed the `sonar.sources` property as it is redundant in the current setup. SonarQube automatically detects source files, simplifying the configuration. This ensures the pipeline remains clean and easier to maintain. --- .gitlab-ci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d7bba64..46af6ba 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -56,7 +56,6 @@ sonarcloud_scan: -Dsonar.token=${SONAR_TOKEN} \ -Dsonar.branch.name=develop \ -Dsonar.projectBaseDir=${CI_PROJECT_DIR} \ - -Dsonar.sources=src/main/java \ -Dsonar.tests=src/test/java \ -Dsonar.exclusions=docs/** \ -Dsonar.java.binaries=target/classes