diff --git a/jenkinsfile b/jenkinsfile index e69de29bb..90ede90c5 100644 --- a/jenkinsfile +++ b/jenkinsfile @@ -0,0 +1,15 @@ +node { + stage('SCM'){ + git 'https://github.com/spring-projects/spring-petclinic.git' + + } + stage ('build the packages'){ +sh 'mvn package' + } + + stage ('archival'){ + +archive 'target/*.jar' + } + +} \ No newline at end of file