Removes Deploy stage as project not set up for deployment

This commit is contained in:
n-sheikh 2020-03-30 18:21:04 -04:00 committed by GitHub
parent 07259d1582
commit 3f9f4cbe13
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

10
Jenkinsfile vendored
View file

@ -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'
}
}
}
}