Added jenkinsfile with basic pipeline

This commit is contained in:
Felix 2020-03-12 17:53:39 -04:00
parent 5c35771a20
commit 856bce81a3

10
Jenkinsfile vendored Normal file
View file

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