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:
+1
-1
@@ -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
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user