Vulnerable-Web-Application/Jenkinsfile
shobikaramasubbarayalu 47aaae2624 New change
2022-02-17 21:05:17 -05:00

11 lines
200 B
Groovy

node {
stage('SCM') {
checkout scm
}
stage('SonarQube Analysis') {
def scannerHome = tool 'SonarScanner';
withSonarQubeEnv() {
sh "${scannerHome}/bin/sonar-scanner"
}
}
}