modified jenkins

This commit is contained in:
seshi7 2020-05-19 16:26:42 +00:00
parent 0275948428
commit 48a46a9593

26
Jenkinsfile vendored
View file

@ -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'
}
}
}
}