Added jenkinsfile

This commit is contained in:
Cindy 2020-03-16 00:35:53 -04:00
parent ac3e64208e
commit 67361b703c

10
Jenkinsfile vendored Normal file
View file

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