You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ch...@apache.org on 2023/05/25 09:27:05 UTC

[flink] branch master updated: [hotfix] Use https://repo.maven.apache.org in maven-utils.sh

This is an automated email from the ASF dual-hosted git repository.

chesnay pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/master by this push:
     new d62ad9d24bd [hotfix] Use https://repo.maven.apache.org in maven-utils.sh
d62ad9d24bd is described below

commit d62ad9d24bd00c62956549688b584bddb38abf82
Author: Sergey Nuyanzin <sn...@gmail.com>
AuthorDate: Tue May 23 19:17:43 2023 +0200

    [hotfix] Use https://repo.maven.apache.org in maven-utils.sh
---
 tools/ci/maven-utils.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/ci/maven-utils.sh b/tools/ci/maven-utils.sh
index ed27b7ae208..74512daf7e9 100755
--- a/tools/ci/maven-utils.sh
+++ b/tools/ci/maven-utils.sh
@@ -33,7 +33,7 @@ export -f run_mvn
 function setup_maven {
 	set -e # fail if there was an error setting up maven
 	if [ ! -d "${MAVEN_VERSIONED_DIR}" ]; then
-	  wget https://archive.apache.org/dist/maven/maven-3/${MAVEN_VERSION}/binaries/apache-maven-${MAVEN_VERSION}-bin.zip
+	  wget https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/${MAVEN_VERSION}/apache-maven-${MAVEN_VERSION}-bin.zip
 	  unzip -d "${MAVEN_CACHE_DIR}" -qq "apache-maven-${MAVEN_VERSION}-bin.zip"
 	  rm "apache-maven-${MAVEN_VERSION}-bin.zip"
 	fi