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 { pipeline {
agent any agent any
stages { stages {
stage('Build') { stage('Build') {
steps { steps {
sh './mvnw package' sh './mvnw package'
} }
}
} }
}
}
}