Update Jenkinsfile

This commit is contained in:
Tarik Abou-Saddik 2020-04-15 16:51:44 -04:00 committed by GitHub
parent 21b7413849
commit f03159c55e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

11
Jenkinsfile vendored
View file

@ -1 +1,10 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
sh './mvnw package'
}
}
}
}