gilde-ci-cd/tool-sonar7.gitlab-ci.yml
2021-10-18 10:49:13 +02:00

17 lines
570 B
YAML

.sonar-template:
stage: test
image: gitlab.exxcellent.de:4567/gilden/ci/exxcellent-sonar-tool:latest
variables:
SONAR_HOST_URL: http://sonar7.exxcellent.de/sonar7
SONAR_PROJECT_KEY: ""
SONAR_PROJECT_NAME: ""
SONAR_EXCLUSIONS: "**/target/**,**/src/test/**"
script:
- mvn $MAVEN_CLI_OPTS test sonar:sonar
"-Dsonar.host.url=$SONAR_HOST_URL"
"-Dsonar.login=$SONAR_TOKEN"
"-Dsonar.projectKey=$SONAR_PROJECT_KEY"
"-Dsonar.projectName=$SONAR_PROJECT_NAME"
"-Dsonar.exclusions=$SONAR_EXCLUSIONS"
- sonar-break-build