We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3745679 commit 06df585Copy full SHA for 06df585
.github/workflows/ci-pipeline.yml
@@ -35,9 +35,13 @@ jobs:
35
- name: Build and run tests
36
run: |
37
export MAVEN_OPTS="-Djansi.force=true"
38
- mvn clean verify sonar:sonar \
+ mvn -B clean verify sonar:sonar \
39
-Dsonar.projectKey=code-quality-testing \
40
-Dsonar.organization=peterm85 \
41
-Dsonar.host.url=https://sonarcloud.io \
42
-Dsonar.login=${{ secrets.SONAR_TOKEN }} \
43
+ -Dsonar.sources=src/main \
44
+ -Dsonar.tests=src/test \
45
+ -Dsonar.junit.reportPaths=target/surefire-reports \
46
+ -Dsonar.coverage.jacoco.xmlReportPaths=target/site/jacoco/jacoco.xml \
47
-Dsonar.exclusions=**/*Application.java
0 commit comments