From 565111c347236133e85ac5af27774c64cfdd0c0b Mon Sep 17 00:00:00 2001 From: Andrew Tolbert Date: Mon, 15 Jul 2019 15:11:02 -0500 Subject: [PATCH] Update to publish to internal artifactory Internal artifactory also mirrors to repo.datastax.com, so publishing here will publish to both places. --- build.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.yaml b/build.yaml index f07a35b5c801..3b4bc8375bbc 100644 --- a/build.yaml +++ b/build.yaml @@ -11,12 +11,12 @@ build: echo "OS VERSION ===== $OS_VERSION" if [ "$OS_VERSION" = "osx/high-sierra" ]; then mvn -B clean -DskipTests - mvn -B -pl transport-native-unix-common,transport-native-kqueue -Partifactory deploy -DskipTests -DaltDeploymentRepository="artifactory::default::https://repo.datastax.com/datastax-releases-local" + mvn -B -pl transport-native-unix-common,transport-native-kqueue -Partifactory deploy -DskipTests -DaltDeploymentRepository="artifactory::default::https://repo.sjc.dsinternal.org/artifactory/datastax-releases-local" else export DEBIAN_FRONTEND=noninteractive export MAVEN_HOME=/home/jenkins/.mvn/apache-maven-3.2.5 export PATH=$MAVEN_HOME/bin:$PATH sudo apt-get update sudo apt-get install -y autoconf automake libtool make tar gcc-multilib libaio-dev - mvn -B clean deploy -Partifactory -DskipTests -DaltDeploymentRepository="artifactory::default::https://repo.datastax.com/datastax-releases-local" + mvn -B clean deploy -Partifactory -DskipTests -DaltDeploymentRepository="artifactory::default::https://repo.sjc.dsinternal.org/artifactory/datastax-releases-local" fi