diff --git a/Jenkinsfile b/Jenkinsfile index 32ed2b647..753d62888 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,15 +1,15 @@ pipeline { - agent {label 'MASTER'} - stages { - stage('scm'){ - steps { - git 'https://github.com/seshi7/spring-petclinic.git' - } - } - stage ('Package'){ - steps { - sh 'mvn package' - } - } - } + agent {label 'MASTER'} + stages { + stage('Source'){ + steps { + git 'https://github.com/seshi7/spring-petclinic.git' + } + } + stage('Package'){ + steps { + sh 'mvn package' + } + } + } }