From acc5c43a1086d8607de951499812e15f4664795d Mon Sep 17 00:00:00 2001 From: joe Date: Thu, 10 Aug 2017 13:43:13 -0600 Subject: [PATCH] update --- joespipeline | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/joespipeline b/joespipeline index e746be512..c659ba26a 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' + node{ + git url: 'https://github.com/nachofree/spring-petclinic.git' sh "/usr/bin/mvn -B verify" step([$class: 'ArtifactArchiver', artifacts: '**/target/*.war', fingerprint: true])