mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-21 14:55:51 +00:00
Removes Deploy stage as project not set up for deployment
This commit is contained in:
parent
07259d1582
commit
3f9f4cbe13
1 changed files with 5 additions and 5 deletions
10
Jenkinsfile
vendored
10
Jenkinsfile
vendored
|
@ -1,6 +1,11 @@
|
|||
pipeline{
|
||||
agent any
|
||||
stages {
|
||||
stage("Clean"){
|
||||
steps{
|
||||
sh './mvnw clean'
|
||||
}
|
||||
}
|
||||
stage("Compile"){
|
||||
steps{
|
||||
sh './mvnw compile'
|
||||
|
@ -16,10 +21,5 @@ pipeline{
|
|||
sh './mvnw install'
|
||||
}
|
||||
}
|
||||
stage("Deploy"){
|
||||
steps{
|
||||
sh './mvnw deploy'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue