From b864e019c1c3646d2ddca7787db324389ea12079 Mon Sep 17 00:00:00 2001 From: Thilo Schwarz Date: Sat, 7 Mar 2026 18:51:34 +0100 Subject: [PATCH 1/3] Remove SonarCloud configuration and scan step from `pom.xml` and Woodpecker workflow. --- .woodpecker/first-test.yml | 18 ------------------ .woodpecker/maven.yml | 15 +++++++++++++++ pom.xml | 10 ---------- 3 files changed, 15 insertions(+), 28 deletions(-) delete mode 100644 .woodpecker/first-test.yml create mode 100644 .woodpecker/maven.yml diff --git a/.woodpecker/first-test.yml b/.woodpecker/first-test.yml deleted file mode 100644 index 4e932b6..0000000 --- a/.woodpecker/first-test.yml +++ /dev/null @@ -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 \ No newline at end of file diff --git a/.woodpecker/maven.yml b/.woodpecker/maven.yml new file mode 100644 index 0000000..6cd51bf --- /dev/null +++ b/.woodpecker/maven.yml @@ -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 \ No newline at end of file diff --git a/pom.xml b/pom.xml index 3db4998..7bc7faf 100644 --- a/pom.xml +++ b/pom.xml @@ -42,16 +42,6 @@ 5.14.2 5.21.0 - - th-schwarz - https://sonarcloud.io - ${file.encoding} - th-schwarz_CloudflareDNS-java - CloudflareDNS-java - develop - develop - src/test/java/**/* - 1.18.20.0 From eb2a96a4822c8a916022a835b84535916e47b77b Mon Sep 17 00:00:00 2001 From: Thilo Schwarz Date: Sat, 7 Mar 2026 19:11:13 +0100 Subject: [PATCH 2/3] Update README: replace Codeberg CI badge with pipeline-specific badge link. --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index ed35766..5698257 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,6 @@ # 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 From 8b69b2551ae17604cb0dad4567215af5c532ee8c Mon Sep 17 00:00:00 2001 From: Thilo Schwarz Date: Sat, 7 Mar 2026 19:16:09 +0100 Subject: [PATCH 3/3] Update README: replace GitLab Issues link with Codeberg Issues link. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5698257..c229358 100644 --- a/README.md +++ b/README.md @@ -8,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. 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). ---