diff --git a/jenkinsfile b/jenkinsfile new file mode 100644 index 000000000..c47bdb852 --- /dev/null +++ b/jenkinsfile @@ -0,0 +1,16 @@ +pipeline { + agent { label 'JDK-11' } + stages { + stage('clone') { + steps { + git url: 'https://github.com/GUDAPATIVENKATESH/spring-petclinic.git', + branch: 'main' + } + } + stage('build') { + steps { + sh 'mvn package' + } + } + } +} \ No newline at end of file