mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-27 09:55:49 +00:00
added changes
This commit is contained in:
parent
5dbb58bc7e
commit
600b291c54
1 changed files with 6 additions and 5 deletions
9
Jenkinsfile
vendored
9
Jenkinsfile
vendored
|
@ -1,17 +1,18 @@
|
||||||
pipeline {
|
pipeline {
|
||||||
agent { label 'UBUNTU_NODE1' }
|
agent { label 'UBUNTU_NODE1' }
|
||||||
trigger {
|
trigger { pollSCM('* * * * *') }
|
||||||
pollSCM('* * * * *') }
|
|
||||||
stages {
|
stages {
|
||||||
stage('get url')
|
stage('get url') {
|
||||||
steps {
|
steps {
|
||||||
git branch: 'sweety',
|
git branch: 'sweety',
|
||||||
url: 'https://github.com/Madhuri-chinta/spring-petclinic.git'
|
url: 'https://github.com/Madhuri-chinta/spring-petclinic.git'
|
||||||
}
|
}
|
||||||
stage('package')
|
}
|
||||||
|
stage('package') {
|
||||||
steps {
|
steps {
|
||||||
sh './mvnw package'
|
sh './mvnw package'
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue