From 40e6b77821a210f7f7e7b6aecdb151470ee33fdd Mon Sep 17 00:00:00 2001 From: Greg Turnquist Date: Tue, 28 May 2019 11:54:54 -0500 Subject: [PATCH] DATAJPA-1545 - Polishing. --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index df278e39b..99ec2d400 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -130,7 +130,7 @@ pipeline { } steps { - sh "USERNAME=${ARTIFACTORY_USR} PASSWORD=${ARTIFACTORY_PSW} PROFILE=ci,snapshot ci/build.sh" + sh "USERNAME=${ARTIFACTORY_USR} PASSWORD=${ARTIFACTORY_PSW} ./mvnw -Pci,snapshot -DskipTests=true clean deploy -B" } } stage('Release to artifactory with docs') { @@ -149,7 +149,7 @@ pipeline { } steps { - sh "USERNAME=${ARTIFACTORY_USR} PASSWORD=${ARTIFACTORY_PSW} PROFILE=ci,snapshot ci/build.sh" + sh "USERNAME=${ARTIFACTORY_USR} PASSWORD=${ARTIFACTORY_PSW} ./mvnw -Pci,snapshot -DskipTests=true clean deploy -B" } } }