adding jenkinsfile

This commit is contained in:
Sandra 2020-03-14 19:05:07 -04:00
parent 5c35771a20
commit 7cbdf3ab4d

10
Jenkinsfile vendored Normal file
View file

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