spring-petclinic/Jenkinsfile
wodnr533 dde8764981
Create Jenkinsfile
Signed-off-by: wodnr533 <wodnr533@naver.com>
2025-09-02 15:47:49 +09:00

11 lines
115 B
Groovy

pipeline {
agent any
stages{
stage('Hello'){
steps {
echo 'Hello World'
}
}
}
}