mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-28 10:25:49 +00:00
added
This commit is contained in:
parent
f2d9c9b63f
commit
a12492ff6c
1 changed files with 16 additions and 0 deletions
16
whitemirch
Normal file
16
whitemirch
Normal file
|
@ -0,0 +1,16 @@
|
|||
pipeline{
|
||||
agent{label 'MAVEN_JDK17'}
|
||||
stages{
|
||||
stage('vcs'){
|
||||
steps{
|
||||
git branch:'main' ,
|
||||
url: 'https://github.com/spring-projects/spring-petclinic.git'
|
||||
}
|
||||
}
|
||||
stage('package') {
|
||||
steps {
|
||||
sh './gradlew build'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue