mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2026-02-07 06:41:11 +00:00
11 lines
176 B
Groovy
11 lines
176 B
Groovy
pipeline {
|
|
agent any
|
|
|
|
stages{
|
|
stage('Git Clone'){
|
|
steps {
|
|
git url: 'https://github.cin/wodnr533/spring-petclinic.git', branch: 'main'
|
|
}
|
|
}
|
|
}
|
|
}
|