added changes

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

12
Jenkinsfile vendored
View file

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