Add Jenkinsfile

This commit is contained in:
EvanMateo 2020-03-12 05:22:28 -04:00
parent 5c35771a20
commit bf8b34a4fb

10
Jenkinsfile vendored Normal file
View file

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