This is an automated email from the ASF dual-hosted git repository. laiyingchun pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/kudu.git
commit e2a399602690a4fbc972ab9f0a38e36496ea0f8e Author: Marton Greber <[email protected]> AuthorDate: Mon Nov 14 19:16:11 2022 +0100 [docker] Update Maven download link This patch updates the download link in the Maven bootstrap script, as the old one was outdated and was not working. Change-Id: Ife4540a8e7f53d5ee5877a07cb38522071720fa5 Reviewed-on: http://gerrit.cloudera.org:8080/19245 Tested-by: Kudu Jenkins Reviewed-by: Attila Bukor <[email protected]> --- docker/bootstrap-maven-env.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/bootstrap-maven-env.sh b/docker/bootstrap-maven-env.sh index 8bb6429f4..1885c8a43 100755 --- a/docker/bootstrap-maven-env.sh +++ b/docker/bootstrap-maven-env.sh @@ -29,7 +29,7 @@ set -o pipefail MVN_VERSION="3.6.3" MVN_CHECKSUM="c35a1803a6e70a126e80b2b3ae33eed961f83ed74d18fcd16909b2d44d7dada3203f1ffe726c17ef8dcca2dcaa9fca676987befeadc9b9f759967a8cb77181c0" wget -nv \ - https://www-us.apache.org/dist/maven/maven-3/$MVN_VERSION/binaries/apache-maven-$MVN_VERSION-bin.tar.gz + https://downloads.apache.org/maven/maven-3/$MVN_VERSION/binaries/apache-maven-$MVN_VERSION-bin.tar.gz sha512sum -c - <<< "$MVN_CHECKSUM apache-maven-$MVN_VERSION-bin.tar.gz" tar -C /usr/local/ -xf apache-maven-$MVN_VERSION-bin.tar.gz ln -s /usr/local/apache-maven-$MVN_VERSION/bin/mvn /usr/local/bin
