mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-22 07:45:49 +00:00
added some changes
This commit is contained in:
parent
155de91801
commit
b8f11381e9
1 changed files with 10 additions and 10 deletions
14
Jenkins
14
Jenkins
|
@ -1,6 +1,6 @@
|
|||
pipeline{
|
||||
agent{label "MAVEN"}
|
||||
options{
|
||||
pipeline {
|
||||
agent { label 'MAVEN' }
|
||||
options {
|
||||
timeout(time: 30, unit: 'MINUTES')
|
||||
}
|
||||
triggers {
|
||||
|
@ -9,15 +9,15 @@ pipeline{
|
|||
stages {
|
||||
stage('git') {
|
||||
steps {
|
||||
git url :'https://github.com/dhille98/spring-petclinic.git'
|
||||
branch : 'dev'
|
||||
|
||||
git url: 'https://github.com/dhille98/spring-petclinic.git' ,
|
||||
branch: 'dev'
|
||||
}
|
||||
}
|
||||
stage('bulid') {
|
||||
stage('build') {
|
||||
steps {
|
||||
sh 'mvn clean package'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in a new issue