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') {
steps {
def scannerHome = tool 'SQ';
withSonarQubeEnv() {
sh "${scannerHome}/bin/sonar-scanner"
withSonarQubeEnv(installationName: 'SQ') {
sh "${scannerHome}/bin/sonar-scanner"
}
}
}