Update Jenkinsfile

master check
This commit is contained in:
Abhijit Gupta 2020-03-14 22:56:09 -04:00 committed by GitHub
parent 117716538e
commit ff5e61bb5d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

3
Jenkinsfile vendored
View file

@ -21,6 +21,9 @@ pipeline {
}
stage('Deploy') {
when {
branch 'master'
}
steps {
sh './mvnw deploy'
}