added changes

This commit is contained in:
Madhuri-chinta 2023-03-14 16:14:34 +05:30
parent abbf1fece3
commit 5dbb58bc7e

19
Jenkinsfile vendored Normal file
View file

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