diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 000000000..7641c4aa6 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,10 @@ +pipeline { + agent any + stages { + stage('Build') { + steps { + git(url: 'https://github.com/mitesh51/spring-petclinic.git', branch: 'master') + } + } + } +} \ No newline at end of file