Update Jenkinsfile

This commit is contained in:
Claudia Lapalme 2020-03-16 12:11:08 -04:00 committed by GitHub
parent 5c397d9cf2
commit cd37c49d17
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

3
Jenkinsfile vendored
View file

@ -19,11 +19,10 @@ pipeline {
} }
} }
stage('Deploy') { stage('Deploy') {
when { equals expected: true, actual: doNotSkip } { when { equals expected: true, actual: doNotSkip }
steps { steps {
sh './mvnw deploy' sh './mvnw deploy'
} }
} }
} }
} }
}