Added Jenkinsfile

This commit is contained in:
François 2020-03-11 22:06:48 -04:00
parent 023fd053bd
commit 61c088af8e

10
Jenkinsfile vendored Normal file
View file

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