This commit is contained in:
Yadciel 2023-05-11 19:53:46 +02:00
parent fe911b62bd
commit 6042fa2fac

View File

@ -32,8 +32,8 @@ pipeline {
stage('SonarQube Analysis') { stage('SonarQube Analysis') {
steps { steps {
def scannerHome = tool 'SQ'; def scannerHome = tool 'SQ';
withSonarQubeEnv() { withSonarQubeEnv(installationName: 'SQ') {
sh "${scannerHome}/bin/sonar-scanner" sh "${scannerHome}/bin/sonar-scanner"
} }
} }
} }