Added JenkinsFile

This commit is contained in:
Mina Selim 2020-03-15 19:55:05 -04:00
parent 5c35771a20
commit bcb2d9264b

11
Jenkinsfile vendored Normal file
View file

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