Update README with Codeberg Issues link and pipeline-specific badge. Remove SonarCloud configuration from pom.xml and workflow.

This commit is contained in:
2026-03-07 18:51:34 +01:00
parent fc7952f8a2
commit b199495d55
4 changed files with 17 additions and 31 deletions
-18
View File
@@ -1,18 +0,0 @@
when:
- event: push
branch: develop
steps:
- name: hello
image: alpine
commands:
- echo "Hello World!"
- name: sonarcloud-scan
image: maven:3-amazoncorretto-17-alpine
environment:
SONAR_TOKEN:
from_secret: sonar_token
commands:
- mvn -B verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar -Dsonar.projectKey=th-schwarz_CloudflareDNS-java -Dsonar.token=$SONAR_TOKEN
+15
View File
@@ -0,0 +1,15 @@
when:
- event: push
branch: develop
steps:
- name: hello
image: alpine
commands:
- echo "Hello World!"
- name: maven verify
image: maven:3-amazoncorretto-17-alpine
commands:
- mvn -B verify
+2 -3
View File
@@ -1,7 +1,6 @@
# CloudflareDNS-java # CloudflareDNS-java
![Codeberg CI](https://ci.codeberg.org/api/badges/16522/status.svg) [![pipeline-badge](https://ci.codeberg.org/api/badges/16522/status.svg?events=push%2Cmanual%2Cpull_request%2Cpull_request_closed)](https://ci.codeberg.org/repos/16522)
## Preface ## Preface
@@ -9,7 +8,7 @@ This project provides a java client for minimalistic access to the Cloudflare AP
managing DNS settings such as creating, updating and deleting DNS records. managing DNS settings such as creating, updating and deleting DNS records.
If you encounter any bugs or find missing features, feel free to report them on If you encounter any bugs or find missing features, feel free to report them on
the [GitLab Issues page](https://gitlab.com/th-schwarz/CloudflareDNS-java/-/issues). the [Codeberg Issues page](https://codeberg.org/th-schwarz/CloudflareDNS-java/issues).
--- ---
-10
View File
@@ -42,16 +42,6 @@
<junit5.version>5.14.2</junit5.version> <junit5.version>5.14.2</junit5.version>
<mockito-junit5.version>5.21.0</mockito-junit5.version> <mockito-junit5.version>5.21.0</mockito-junit5.version>
<!-- sonarqube -->
<sonar.organization>th-schwarz</sonar.organization>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
<sonar.sourceEncoding>${file.encoding}</sonar.sourceEncoding>
<sonar.projectKey>th-schwarz_CloudflareDNS-java</sonar.projectKey>
<sonar.projectName>CloudflareDNS-java</sonar.projectName>
<sonar.projectMainBranch>develop</sonar.projectMainBranch>
<sonar.branch.name>develop</sonar.branch.name>
<sonar.test.exclusions>src/test/java/**/*</sonar.test.exclusions>
<lombok-maven-plugin.version>1.18.20.0</lombok-maven-plugin.version> <lombok-maven-plugin.version>1.18.20.0</lombok-maven-plugin.version>
</properties> </properties>