diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 000000000..953c7ece6 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,15 @@ +node { + stage('SCM'){ + git 'https://github.com/pusa9/spring-petclinic.git' + + } + stage ('build the packages'){ +sh 'mvn package' + } + + stage ('archival'){ + +archive 'target/*.jar' + } + +} \ No newline at end of file