Update Sonar exclusions path in pom.xml

Changed the Sonar exclusions path from `src/docs/**/*` to `docs/**` for better alignment with the project's folder structure. This ensures accurate exclusion of intended files during analysis.
This commit is contained in:
2025-04-08 17:32:46 +02:00
parent 29352da798
commit 21b188b913
+1 -1
View File
@@ -25,7 +25,7 @@
<sonar.organization>th-schwarz</sonar.organization>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
<sonar.sourceEncoding>${file.encoding}</sonar.sourceEncoding>
<sonar.exclusions>src/docs/**/*</sonar.exclusions>
<sonar.exclusions>docs/**</sonar.exclusions>
<sonar.test.exclusions>src/test/java/**/*</sonar.test.exclusions>
<!-- checkstyle -->