diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 000000000..6eade9bd6 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,15 @@ +pipeline { + agent any + stages { + stage ('Checkout') { + steps { + git branch: 'main', url: 'https://github.com/gjraju1304/spring-petclinic.git' + } + } + stage ('Build') { + steps { + sh "mvn clean install" + } + } + } +}