mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2026-01-13 13:21:11 +00:00
21 lines
344 B
Groovy
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'
|
|
}
|
|
}
|
|
}
|
|
}
|