mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-27 09:25:49 +00:00
new file creaton Jenkinsfile
This commit is contained in:
parent
bf0452d6f2
commit
cdbd643b4f
1 changed files with 17 additions and 0 deletions
17
Jenkinsfile
vendored
Normal file
17
Jenkinsfile
vendored
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
pipeline {
|
||||||
|
agent { label 'MASTER' }
|
||||||
|
stages {
|
||||||
|
stage('clone') {
|
||||||
|
steps {
|
||||||
|
git branch: 'declarative',
|
||||||
|
url: 'https://github.com/kasasravankumar/spring-petclinic.git'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('build'){
|
||||||
|
steps{
|
||||||
|
sh 'mvn package'
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue