diff --git a/Jenkinsfile b/Jenkinsfile index 04ab6f7dc..d5e65a9fc 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,9 +1,21 @@ pipeline{ agent any stages { - stage("Build"){ + stage("Compile"){ steps{ - sh './mvnw package' + sh './mvnw compile' + } + stage("Test"){ + steps{ + sh './mvnw test' + } + stage("Install"){ + steps{ + sh './mvnw install' + } + stage("Deploy"){ + steps{ + sh './mvnw deploy' } } }