mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-21 23:05:50 +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{
|
pipeline{
|
||||||
agent any
|
agent any
|
||||||
stages {
|
stages {
|
||||||
|
stage("Clean"){
|
||||||
|
steps{
|
||||||
|
sh './mvnw clean'
|
||||||
|
}
|
||||||
|
}
|
||||||
stage("Compile"){
|
stage("Compile"){
|
||||||
steps{
|
steps{
|
||||||
sh './mvnw compile'
|
sh './mvnw compile'
|
||||||
|
@ -16,10 +21,5 @@ pipeline{
|
||||||
sh './mvnw install'
|
sh './mvnw install'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage("Deploy"){
|
|
||||||
steps{
|
|
||||||
sh './mvnw deploy'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue