From 48a46a959331badd05b84e49507c3ec2948d9448 Mon Sep 17 00:00:00 2001 From: seshi7 Date: Tue, 19 May 2020 16:26:42 +0000 Subject: [PATCH] modified jenkins --- Jenkinsfile | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) 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' + } + } + } }