From df829f2d089f15c741aad56c06c21669e4b691e2 Mon Sep 17 00:00:00 2001 From: Felix Date: Sun, 15 Mar 2020 23:11:01 -0400 Subject: [PATCH] Fix deploy with an internal deploy repository --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 44a307d76..9e5f5975e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -21,7 +21,7 @@ pipeline { stage('Deploy') { steps { - sh './mvnw deploy' + sh './mvnw deploy' -DaltDeploymentRepository=internal.repo::default::file:///C:/Users/felix/Desktop/PetClinicDeploy } } }