Added Jenkinsfile

This commit is contained in:
mitesh51 2017-05-27 16:36:23 +05:30
parent f8efcf5bdd
commit 7262ae6087

10
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,10 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
git(url: 'https://github.com/mitesh51/spring-petclinic.git', branch: 'master')
}
}
}
}