mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-19 14:05:50 +00:00
Added jenkinsfile
This commit is contained in:
parent
8db5fd2e3c
commit
7655c74972
1 changed files with 15 additions and 0 deletions
15
jenkinsfile
15
jenkinsfile
|
@ -0,0 +1,15 @@
|
|||
node {
|
||||
stage('SCM'){
|
||||
git 'https://github.com/spring-projects/spring-petclinic.git'
|
||||
|
||||
}
|
||||
stage ('build the packages'){
|
||||
sh 'mvn package'
|
||||
}
|
||||
|
||||
stage ('archival'){
|
||||
|
||||
archive 'target/*.jar'
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in a new issue