mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-21 15:25:49 +00:00
Create jenkinsfiles
This commit is contained in:
parent
516722647a
commit
2da414fb93
1 changed files with 14 additions and 0 deletions
14
jenkinsfiles
Normal file
14
jenkinsfiles
Normal file
|
@ -0,0 +1,14 @@
|
|||
pipeline {
|
||||
agent {
|
||||
label 'spc'
|
||||
}
|
||||
parameters {
|
||||
choice(name: 'MAVEN_GOAL', choices: ['package', 'clean package'], description:'This is maven goal')
|
||||
}
|
||||
stages {
|
||||
stage('git') {
|
||||
steps {git url: 'https://github.com/spring-projects/spring-petclinic.git',branch: 'main'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue