Added Jenkinsfile for pipelining.

This commit is contained in:
Christopher Jones 2017-08-31 15:11:09 -05:00
parent 49d729e3cd
commit fbaab781de

19
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,19 @@
pipeline {
environment {
}
tools {
maven 'Maven 3.5.0'
}
agent none
stages {
stage('Build, Test, and Package') {
agent any
steps {
sh "mvn clean package"
}
}
}
}