Update issue tracker URL and adjust SonarQube configurations

Switched issue tracking from GitHub to GitLab in `pom.xml`. Commented out SonarQube configurations in `pom.xml` and adjusted exclusions in `.gitlab-ci.yml` script. These changes align with the project's migration to GitLab and streamlined quality analysis setup.
This commit is contained in:
2025-04-08 18:24:41 +02:00
parent 5ae9432958
commit 8fdb7887cf
2 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -64,7 +64,7 @@ sonarcloud_scan:
paths:
- .maven-cache
script:
- sonar-scanner -Dsonar.projectKey=${SONAR_PROJECT_KEY} -Dsonar.organization=${SONAR_ORGANIZATION} -Dsonar.token=${SONAR_TOKEN} -Dsonar.java.binaries=target/classes
- sonar-scanner -Dsonar.projectKey=${SONAR_PROJECT_KEY} -Dsonar.organization=${SONAR_ORGANIZATION} -Dsonar.token=${SONAR_TOKEN} -Dsonar.exclusions=docs/** -Dsonar.java.binaries=target/classes
only:
- merge_requests
- develop
+7 -7
View File
@@ -11,8 +11,8 @@
<packaging>jar</packaging>
<issueManagement>
<url>https://github.com/th-schwarz/CloudflareDNS-java/issues</url>
<system>GitHub Issues</system>
<url>https://gitlab.com/thischwa/CloudflareDNS-java/-/issues</url>
<system>GitLab Issues</system>
</issueManagement>
<properties>
@@ -22,11 +22,11 @@
<project.reporting.outputEncoding>${file.encoding}</project.reporting.outputEncoding>
<!-- sonarQube cloud -->
<sonar.organization>th-schwarz</sonar.organization>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
<sonar.sourceEncoding>${file.encoding}</sonar.sourceEncoding>
<sonar.exclusions>docs/**/*</sonar.exclusions>
<sonar.test.exclusions>src/test/java/**/*</sonar.test.exclusions>
<!-- <sonar.organization>th-schwarz</sonar.organization>-->
<!-- <sonar.host.url>https://sonarcloud.io</sonar.host.url>-->
<!-- <sonar.sourceEncoding>${file.encoding}</sonar.sourceEncoding>-->
<!-- <sonar.exclusions>docs/**/*</sonar.exclusions>-->
<!-- <sonar.test.exclusions>src/test/java/**/*</sonar.test.exclusions>-->
<!-- checkstyle -->
<checkstyle.version>10.21.3</checkstyle.version>