Create Jenkinsfile

This commit is contained in:
Tarik Abou-Saddik 2020-04-15 15:40:22 -04:00 committed by GitHub
parent 78622f3a0a
commit 802b4adafa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

11
Jenkinsfile vendored Normal file
View file

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