diff --git a/Jenkinsfile b/Jenkinsfile index 052adb7b7..1edb216d3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -7,22 +7,25 @@ pipeline { stage('Build') { steps { echo 'Building' - sh './mvnw package' + sh './mvnw compile' } } stage('Test') { steps { echo 'Testing' + sh './mvnw test' } } stage('Package') { steps { echo 'Package' + sh './mvnw package' } } stage('Deploy') { steps { echo 'Deploying' + sh './mvnw deploy' } } }