Added Jenkinsfile

This commit is contained in:
Jonathan 2020-03-11 21:59:38 -04:00
parent 5c35771a20
commit d5a568eb43

10
Jenkinsfile vendored Normal file
View file

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