mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-21 14:55:51 +00:00
Update Jenkinsfile
This commit is contained in:
parent
c95c02e955
commit
a08eef23ba
1 changed files with 16 additions and 1 deletions
17
Jenkinsfile
vendored
17
Jenkinsfile
vendored
|
@ -3,7 +3,22 @@ pipeline {
|
|||
stages {
|
||||
stage('Build') {
|
||||
steps {
|
||||
bat './mvnw package'
|
||||
bat './mvnw compile'
|
||||
}
|
||||
}
|
||||
stage('Test')
|
||||
steps {
|
||||
bat './mvnw test'
|
||||
}
|
||||
}
|
||||
stage('Package')
|
||||
steps {
|
||||
bat './mvnw package'
|
||||
}
|
||||
}
|
||||
stage('Deploy')
|
||||
steps {
|
||||
bat './mvnw deploy'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue