adding jenkinsfile

This commit is contained in:
Benjamin Stein 2017-05-05 12:37:03 -07:00
parent df5c4bcb83
commit 46d5514bdf

14
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,14 @@
pipeline {
agent any
tools {
maven 'maven-3.5.0'
}
stages {
stage ('Build') {
steps {
git 'https://github.com/liatrio/spring-petclinic'
sh 'mvn clean install'
}
}
}
}