Update Jenkinsfile

This commit is contained in:
Victor Manea 2020-03-18 21:55:33 -04:00 committed by GitHub
parent 58b2f4c33d
commit 03db5add22
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

6
Jenkinsfile vendored
View file

@ -8,19 +8,19 @@ pipeline {
}
}
stage('Build') {
stage('Test') {
steps {
sh 'mvn test'
}
}
stage('Build') {
stage('Package') {
steps {
sh 'mvn package'
}
}
stage('Build') {
stage('Deploy') {
steps {
sh 'mvn deploy'
}