diff --git a/jenkinsfile b/jenkinsfile index 92f8617..0f61b82 100644 --- a/jenkinsfile +++ b/jenkinsfile @@ -32,10 +32,10 @@ pipeline { stage('SonarQube Analysis') { steps { script { - def scannerHome = tool(name: 'SonarScanner'); - withSonarQubeEnv(installationName: 'SonarScanner') { - sh "${scannerHome}/bin/sonar-scanner" - } + def scannerHome = tool 'SQ'; // Use the name you configured in Jenkins + withSonarQubeEnv(installationName: 'SQ') { // Use the same name here + sh "${scannerHome}/bin/sonar-scanner" + } } } }