Migrate project hosting and repository URLs from Codeberg to Gitea.
Build and Analyse / build-and-analyse (push) Failing after 11m54s

This commit is contained in:
2026-06-25 18:55:00 +02:00
parent 7b08820d1a
commit 0a401b164c
2 changed files with 12 additions and 14 deletions
+2 -4
View File
@@ -8,15 +8,13 @@
[![Lines of Code](https://sonarcloud.io/api/project_badges/measure?project=th-schwarz_CloudflareDNS-java&metric=ncloc)](https://sonarcloud.io/summary/new_code?id=th-schwarz_CloudflareDNS-java) [![Lines of Code](https://sonarcloud.io/api/project_badges/measure?project=th-schwarz_CloudflareDNS-java&metric=ncloc)](https://sonarcloud.io/summary/new_code?id=th-schwarz_CloudflareDNS-java)
[![Code Smells](https://sonarcloud.io/api/project_badges/measure?project=th-schwarz_CloudflareDNS-java&metric=code_smells)](https://sonarcloud.io/summary/new_code?id=th-schwarz_CloudflareDNS-java) [![Code Smells](https://sonarcloud.io/api/project_badges/measure?project=th-schwarz_CloudflareDNS-java&metric=code_smells)](https://sonarcloud.io/summary/new_code?id=th-schwarz_CloudflareDNS-java)
[![codeberg.png](docs/codeberg.png)](https://codeberg.org/th-schwarz/CloudflareDNS-java)
## Preface ## Preface
This project provides a java client for minimalistic access to the Cloudflare API version 4, which is mainly used for This project provides a java client for minimalistic access to the Cloudflare API version 4, which is mainly used for
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 [Codeberg Issues page](https://codeberg.org/th-schwarz/CloudflareDNS-java/issues). the [Gitea Issues page](https://git.mein-gateway.de/thischwa/CloudflareDNS-java/issues).
--- ---
@@ -28,7 +26,7 @@ This guide comes without any warranty. Use at your own risk. The author is not r
## Get It ## Get It
The project has its own maven repository. Follow the instructions on the latest [package](https://codeberg.org/th-schwarz/-/packages/maven/codes.thischwa:cloudflaredns/) to add the repository to your project. The project has its own maven repository. Follow the instructions on the latest [package](https://git.mein-gateway.de/thischwa/-/packages) to add the repository to your project.
## Changelog ## Changelog
+10 -10
View File
@@ -10,8 +10,8 @@
<packaging>jar</packaging> <packaging>jar</packaging>
<issueManagement> <issueManagement>
<url>https://codeberg.org/th-schwarz/CloudflareDNS-java/issues</url> <url>https://git.mein-gateway.de/thischwa/CloudflareDNS-java/issues</url>
<system>Codeberg Issues</system> <system>Gitea Issues</system>
</issueManagement> </issueManagement>
<properties> <properties>
@@ -55,23 +55,23 @@
</properties> </properties>
<scm> <scm>
<developerConnection>scm:git:git@codeberg.org:th-schwarz/CloudflareDNS-java.git</developerConnection> <developerConnection>scm:git:https://git.mein-gateway.de/thischwa/CloudflareDNS-java.git</developerConnection>
<connection>scm:git:git@codeberg.org:th-schwarz/CloudflareDNS-java.git</connection> <connection>scm:git:https://git.mein-gateway.de/thischwa/CloudflareDNS-java.git</connection>
<url>https://codeberg.org/th-schwarz/CloudflareDNS-java</url> <url>https://git.mein-gateway.de/thischwa/CloudflareDNS-java</url>
<tag>v0.1.0</tag> <tag>HEAD</tag>
</scm> </scm>
<distributionManagement> <distributionManagement>
<repository> <repository>
<id>codeberg-cloudflaredns</id> <id>mygitea</id>
<url>https://codeberg.org/api/packages/th-schwarz/maven</url> <url>https://git.mein-gateway.de/api/packages/thischwa/maven</url>
<releases> <releases>
<enabled>true</enabled> <enabled>true</enabled>
</releases> </releases>
</repository> </repository>
<snapshotRepository> <snapshotRepository>
<id>codeberg-cloudflaredns</id> <id>mygitea</id>
<url>https://codeberg.org/api/packages/th-schwarz/maven</url> <url>https://git.mein-gateway.de/api/packages/thischwa/maven</url>
<snapshots> <snapshots>
<enabled>true</enabled> <enabled>true</enabled>
</snapshots> </snapshots>