diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 000000000..937d56cc2 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,10 @@ +pipeline { + agent any + stages { + stage('Build') { + steps { + git branch: 'main', url: 'https://github.com/Yeshwanth351/spring-petclinic.git' + } + } + } +}