thie commit added the jenkins file

This commit is contained in:
arthur tourneyrie 2020-03-10 11:36:03 -04:00
parent 5c35771a20
commit 1503c4882c

10
Jenkinsfile vendored Normal file
View file

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