Added jenkinsfile

This commit is contained in:
Lara 2020-03-09 21:59:29 -04:00
parent ac3e64208e
commit 32af24c0de

10
Jenkinsfile.txt Normal file
View file

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