diff --git a/Jenkinsfile b/Jenkinsfile index 11392f56d..8c828919a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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' - } - } } }