Update Jenkinsfile

Signed-off-by: wodnr533 <wodnr533@naver.com>
This commit is contained in:
wodnr533 2025-09-02 16:02:50 +09:00 committed by GitHub
parent 9ffe52e149
commit 3d5d5f04f4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

10
Jenkinsfile vendored
View file

@ -1,11 +1,21 @@
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'
}
}
}
}