Update repository URL and dependency version in README

Replaced the Maven repository URL with the new GitLab package URL and updated the dependency version from `0.1.0-beta.1` to `0.1.0.beta-2`. This ensures compatibility with the latest hosting and artifact version.
This commit is contained in:
2025-04-12 18:36:00 +02:00
parent afbc7d5807
commit fa09ae5987
+3 -4
View File
@@ -38,9 +38,8 @@ The project has its own maven repository. It can be added to the `pom.xml`:
```xml ```xml
<repositories> <repositories>
<repository> <repository>
<id>github-cloudflaredns</id> <id>gitlab-cloudflare</id>
<name>GitHub Maven Packages</name> <url>https://gitlab.com/api/v4/projects/68509751/packages/maven</url>
<url>https://maven.pkg.github.com/th-schwarz/CloudflareDNS-java</url>
</repository> </repository>
</repositories> </repositories>
``` ```
@@ -50,7 +49,7 @@ The dependency is:
<dependency> <dependency>
<groupId>codes.thischwa</groupId> <groupId>codes.thischwa</groupId>
<artifactId>cloudflaredns</artifactId> <artifactId>cloudflaredns</artifactId>
<version>0.1.0-beta.1</version> <version>0.1.0.beta-2</version>
</dependency> </dependency>
``` ```