mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-21 15:25:49 +00:00
Create Jenkinsfile
This commit is contained in:
parent
30e16ab3fe
commit
5be80e347e
1 changed files with 17 additions and 0 deletions
17
Jenkinsfile
vendored
Normal file
17
Jenkinsfile
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
pipeline {
|
||||
agent any
|
||||
tools {
|
||||
jdk "jdk17"
|
||||
maven "M3"
|
||||
}
|
||||
|
||||
stages {
|
||||
stage('Git clone') {
|
||||
steps {
|
||||
echo 'Git clone'
|
||||
git url: 'https://github.com/lwj9812/spring-petclinic.git',
|
||||
branch: 'efficien-webjars'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue