Update Jenkinsfile

This commit is contained in:
JayChouteau 2020-03-16 17:07:49 -04:00 committed by GitHub
parent ce7e7e1c96
commit 579b60bd28
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

2
Jenkinsfile vendored
View file

@ -3,7 +3,7 @@ agent any
stages {
stage('Build') {
steps {
bat './mvnw package'
sh './mvnw package'
}
}
}