Remove SonarCloud configuration and scan step from pom.xml and Woodpecker workflow.

This commit is contained in:
2026-03-07 18:51:34 +01:00
parent fc7952f8a2
commit b864e019c1
3 changed files with 15 additions and 28 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