This commit is contained in:
dbmuse 2018-02-22 10:03:51 +00:00 committed by GitHub
commit f9326428f1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

11
JenkinsFile Normal file
View file

@ -0,0 +1,11 @@
pipeline{
agent { docker 'maven:3.5.2-alpine' }
stages {
stage ('Checkout') {
steps {
git 'https://github.com/dbmuse/spring-petclinic.git'
}
}
}
}