added changes

This commit is contained in:
Madhuri-chinta 2023-03-14 20:17:02 +05:30
parent a729e3461d
commit 186ad203bc

10
Jenkinsfile vendored
View file

@ -13,8 +13,16 @@ pipeline {
sh './mvnw package' sh './mvnw package'
} }
} }
stage('sonarqube') {
steps {
withSonarQubeEnv('My SonarQube Server') {
sh 'mvn clean package sonar:sonar'
}
}
}
} }
} }