mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-21 23:05:50 +00:00
Added package/deploy to jekins
This commit is contained in:
parent
76081ff1eb
commit
bc842c5b57
1 changed files with 14 additions and 0 deletions
14
Jenkinsfile
vendored
14
Jenkinsfile
vendored
|
@ -13,6 +13,20 @@ pipeline {
|
|||
sh'./mvnw test'
|
||||
}
|
||||
}
|
||||
|
||||
stage('Package')
|
||||
{
|
||||
steps{
|
||||
sh'./mvnw package'
|
||||
}
|
||||
}
|
||||
|
||||
stage('Deploy')
|
||||
{
|
||||
steps{
|
||||
sh'./mvnw deploy'
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue