diff --git a/jenkinsfile b/jenkinsfile index 2049e76..a4bd45d 100644 --- a/jenkinsfile +++ b/jenkinsfile @@ -24,21 +24,5 @@ pipeline { """ } } - stage('SCM') { - steps { - checkout scm - } - } - stage('SonarQube Analysis') { - steps { - script { - def scannerHome = tool 'SonarScanner'; // Use the name you configured in Jenkins - withSonarQubeEnv(installationName: 'SQ') { // Use the same name here - sh "${scannerHome}/bin/sonar-scanner" - } - } - } - } } } -