From 660ee1ecf65eeea91967b7c9ebc33b446982ec61 Mon Sep 17 00:00:00 2001 From: Michael Simons Date: Tue, 11 May 2021 14:59:55 +0200 Subject: [PATCH] GH-2245 - Polishing. --- ci/runClusterTests.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ci/runClusterTests.sh b/ci/runClusterTests.sh index 394b07088..ac067aebc 100755 --- a/ci/runClusterTests.sh +++ b/ci/runClusterTests.sh @@ -20,18 +20,18 @@ CLUSTER_TEST_DIR=$BASEDIR/target/cluster-tests ( cd $BASEDIR - SDN_VERSION=$(./mvnw help:evaluate -Dexpression=project.version -q -DforceStdout) + SDN_VERSION=$(./mvnw --no-transfer-progress help:evaluate -Dexpression=project.version -q -DforceStdout) mkdir -p $CLUSTER_TEST_DIR # Create the distribution and deploy it into the target folder itself - ./mvnw -Pgenerate-test-jar -DskipTests clean deploy -DaltDeploymentRepository=snapshot-repo::default::file:///$CLUSTER_TEST_DIR/snapshot-repo + ./mvnw --no-transfer-progress -Pgenerate-test-jar -DskipTests clean deploy -DaltDeploymentRepository=snapshot-repo::default::file:///$CLUSTER_TEST_DIR/snapshot-repo # Massage the directory name into something sed is happy with SNAPSHOT_REPO=$(printf '%s\n' "$CLUSTER_TEST_DIR/snapshot-repo" | sed -e 's/[\/&]/\\&/g') # Create a plain list of dependencies - ./mvnw dependency:list -DexcludeTransitive | sed -n -e 's/^\[INFO\] //p' > $CLUSTER_TEST_DIR/dependencies.txt + ./mvnw --no-transfer-progress dependency:list -DexcludeTransitive | sed -n -e 's/^\[INFO\] //p' > $CLUSTER_TEST_DIR/dependencies.txt # Update repository path, version and dependencies in template sed -e s/\$SDN_VERSION/$SDN_VERSION/ -e s/\$SNAPSHOT_REPO/$SNAPSHOT_REPO/ $CI_BASEDIR/runClusterTests.template.java |\