Update Jenkinsfile

This commit is contained in:
Pam 2020-04-15 22:29:32 -04:00 committed by GitHub
parent 7104fb9dd5
commit 2b58c8d590
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

4
Jenkinsfile vendored
View file

@ -3,12 +3,12 @@ pipeline {
stages { stages {
stage('Build') { stage('Build') {
steps { steps {
sh './mvnw package' sh './mvnw clean package'
} }
} }
stage('Test') { stage('Test') {
steps { steps {
echo 'Test' sh './mvnw test'
} }
} }
stage('Package') { stage('Package') {