diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 000000000..0db34ff3a --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,17 @@ +pipeline { + agent { label 'MASTER' } + stages { + stage('clone') { + steps { + git branch: 'declarative', + url: 'https://github.com/kasasravankumar/spring-petclinic.git' + } + } + stage('build'){ + steps{ + sh 'mvn package' + + } + } + } +}