From cc21a072f2f879020fa9acef88f8cab8217bd8f9 Mon Sep 17 00:00:00 2001 From: joe Date: Wed, 9 Aug 2017 17:58:02 -0600 Subject: [PATCH] update joespipeline --- joespipeline | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/joespipeline b/joespipeline index e746be512..7eaf6a7ea 100644 --- a/joespipeline +++ b/joespipeline @@ -1,12 +1,12 @@ echo 'Hello from Pipeline Demo' stage 'Compile' node { - git url: 'https://github.com/mitesh51/spring-petclinic.git' + git url: 'https://github.com/nachofree/spring-petclinic.git' sh "/usr/bin/mvn -B compile" } stage 'Test' node('TestServer') { - git url: 'https://github.com/mitesh51/spring-petclinic.git' + git url: 'https://github.com/nachofree/spring-petclinic.git' sh "/usr/bin/mvn -B verify" step([$class: 'ArtifactArchiver', artifacts: '**/target/*.war', fingerprint: true])