jenkins file created

This commit is contained in:
carlitalabbe 2020-03-16 21:24:18 -04:00
parent 5c35771a20
commit 9228d4b05d

10
Jenkinsfile vendored Normal file
View file

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