added changes

This commit is contained in:
Madhuri-chinta 2023-03-14 16:20:21 +05:30
parent 5dbb58bc7e
commit 600b291c54

11
Jenkinsfile vendored
View file

@ -1,17 +1,18 @@
pipeline {
agent { label 'UBUNTU_NODE1' }
trigger {
pollSCM('* * * * *') }
trigger { pollSCM('* * * * *') }
stages {
stage('get url')
stage('get url') {
steps {
git branch: 'sweety',
url: 'https://github.com/Madhuri-chinta/spring-petclinic.git'
}
stage('package')
}
stage('package') {
steps {
sh './mvnw package'
}
}
}
}
}