Update Jenkinsfile

This commit is contained in:
Firassawan 2020-03-09 18:34:35 -04:00 committed by GitHub
parent 0682e641d2
commit 2210383638
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

4
Jenkinsfile vendored
View file

@ -8,12 +8,12 @@ pipeline {
} }
stage('Test') { stage('Test') {
steps { steps {
sh './mvnw package' sh 'mvn test'
} }
} }
stage('Package') { stage('Package') {
steps { steps {
sh './mvnw package' sh 'mvn package'
} }
} }
stage('Deploy') { stage('Deploy') {