added comma

This commit is contained in:
Sohail 2023-03-08 16:31:29 +05:30
parent 9b7e2e40f3
commit f7d9dca890

View file

@ -6,7 +6,7 @@ pipeline {
stages {
stage('vcs') {
steps {
steps{
git url: 'https://github.com/shaiksohail11/spring-petclinic.git',
branch: 'main'
@ -15,13 +15,13 @@ pipeline {
}
stage('build') {
steps {
steps{
sh 'mvn package'
}
}
stage('sonar analysis') {
steps {
steps{
withSonarQubeEnv('SONAR_CLOUD') {
sh 'mvn clean package sonar:sonar -Dsonar.organization=jenkins12'
}