Create Jenkinsfile

This commit is contained in:
Jessica Allaire 2020-03-30 14:09:54 -04:00 committed by GitHub
parent 720ebe81bc
commit 1a15069467
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

10
Jenkinsfile vendored Normal file
View file

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