Update Jenkinsfile

This commit is contained in:
Tarik Abou-Saddik 2020-04-15 20:08:43 -04:00 committed by GitHub
parent 4a7fc44c96
commit 972d5c8657
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

5
Jenkinsfile vendored
View file

@ -7,22 +7,25 @@ pipeline {
stage('Build') { stage('Build') {
steps { steps {
echo 'Building' echo 'Building'
sh './mvnw package' sh './mvnw compile'
} }
} }
stage('Test') { stage('Test') {
steps { steps {
echo 'Testing' echo 'Testing'
sh './mvnw test'
} }
} }
stage('Package') { stage('Package') {
steps { steps {
echo 'Package' echo 'Package'
sh './mvnw package'
} }
} }
stage('Deploy') { stage('Deploy') {
steps { steps {
echo 'Deploying' echo 'Deploying'
sh './mvnw deploy'
} }
} }
} }