diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 000000000..350ddf7fb --- /dev/null +++ b/Jenkinsfile @@ -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' + } + } + + } + +