diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 000000000..fc91bc2de --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,12 @@ +node { + stage('SCM Checkout'){ + git branch: 'master', + + credentialsId: 'github', + + url: 'https://github.com/varunak12/spring-petclinic' + } + stage "compile package"{ + sh 'mvn package' + } + }