diff --git a/Jenkinsfile b/Jenkinsfile index 46ef3609f..2dfb4238d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,16 +3,13 @@ pipeline{ triggers { pollSCM('* * * * *') } - stages { - stage ('vcs') { - steps { - git url: 'https://github.com/shaiksohail11/spring-petclinic.git', - branch: 'main', - sh 'mvn package' - - - } - - } - } + stages { + stage ('vcs') { + steps { + git url: 'https://github.com/shaiksohail11/spring-petclinic.git', + branch: 'main' + sh 'mvn package' + } + } + } } \ No newline at end of file