[NO-JIRA] Jenkinsfile syntax fix for sonar

This commit is contained in:
Matt Pavlovich 2024-10-01 10:26:40 -05:00 committed by Matt Pavlovich
parent 8df46ca989
commit 7a86e85f3d
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -162,7 +162,7 @@ pipeline {
when { expression { return params.sonarEnabled } }
steps {
withCredentials([string(credentialsId: 'SONARCLOUD_TOKEN', variable: 'SONAR_TOKEN')]) {
withCredentials([string(credentialsId: 'SONARCLOUD_TOKEN', variable: 'SONAR_TOKEN')])
sh 'echo "Running the Sonar stage"'
sh 'mvn -B -e -fae clean verify sonar:sonar -Dsonar.projectKey=apache_activemq -Dsonar.organization=apache -Dsonar.host.url=https://sonarcloud.io -Dsonar.login=${SONAR_TOKEN} -Dsurefire.rerunFailingTestsCount=3'
}