Update README with Codeberg Issues link and pipeline-specific badge. Remove SonarCloud configuration from pom.xml and workflow.
This commit is contained in:
@@ -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
|
||||
@@ -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
|
||||
@@ -1,7 +1,6 @@
|
||||
# CloudflareDNS-java
|
||||
|
||||

|
||||
|
||||
[](https://ci.codeberg.org/repos/16522)
|
||||
|
||||
## 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.
|
||||
|
||||
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).
|
||||
|
||||
---
|
||||
|
||||
|
||||
@@ -42,16 +42,6 @@
|
||||
<junit5.version>5.14.2</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>
|
||||
</properties>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user