spring-petclinic/Jenkinsfile
wodnr533 88eb2f42b2
Update Jenkinsfile
Signed-off-by: wodnr533 <wodnr533@naver.com>
2025-09-02 15:55:19 +09:00

11 lines
176 B
Groovy

pipeline {
agent any
stages{
stage('Git Clone'){
steps {
git url: 'https://github.cin/wodnr533/spring-petclinic.git', branch: 'main'
}
}
}
}