added jenkinsfile

This commit is contained in:
Cindy 2020-03-16 01:12:47 -04:00
parent 204e0f4c28
commit 84e66bbdc0

10
Jenkinsfile vendored Normal file
View file

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