Update Jenkinsfile

This commit is contained in:
KevinHTrinh 2020-03-16 00:59:42 -04:00 committed by GitHub
parent fa7654b9b3
commit ef2aa48b05
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

3
Jenkinsfile vendored
View file

@ -11,18 +11,15 @@ pipeline {
sh 'mvn test' sh 'mvn test'
} }
} }
}
stage('Package') { stage('Package') {
steps { steps {
sh 'mvn package' sh 'mvn package'
} }
} }
}
stage('Deploy') { stage('Deploy') {
steps { steps {
sh 'mvn deploy' sh 'mvn deploy'
} }
} }
} }
}
} }