Added Jenkinsfile

This commit is contained in:
Jessica Allaire 2020-03-30 14:16:10 -04:00
parent 1a15069467
commit 2adb6a6d99

17
Jenkinsfile vendored
View file

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