spring-petclinic/Jenkinsfile
wodnr533 3d5d5f04f4
Update Jenkinsfile
Signed-off-by: wodnr533 <wodnr533@naver.com>
2025-09-02 16:02:50 +09:00

21 lines
344 B
Groovy

pipeline {
agent any
tools {
maven "M3"
jdk "JDK17"
}
stages{
stage('Git Clone'){
steps {
git url: 'https://github.com/wodnr533/spring-petclinic.git', branch: 'main'
}
}
stage('Maven Build'){
steps {
sh 'mvn -Dmaven.test.failure.ignore=true clean package'
}
}
}
}