Jenkinsfile

This commit is contained in:
mohanadarafe 2020-03-14 11:31:28 -04:00
parent b6cac1333f
commit 11e1ed2b42

10
Jenkinsfile vendored Normal file
View file

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