From 2dbbd195c84805f2b3068f56903621f0ca8fc4ee Mon Sep 17 00:00:00 2001 From: he1l0world Date: Fri, 13 Jun 2025 23:18:26 -0400 Subject: [PATCH 1/2] doc: fix invalid maven link --- INSTALL.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 1a53b4e3b226..b975ada85ddf 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -18,12 +18,12 @@ Install tools and dependencies used for development: # yum -y install git java-17-openjdk java-17-openjdk-devel \ mysql mysql-server mkisofs git gcc python MySQL-python openssh-clients wget -Set up Maven (3.9.9): +Set up Maven (3.9.10): - # wget https://dlcdn.apache.org/maven/maven-3/3.9.9/binaries/apache-maven-3.9.9-bin.tar.gz - # tar -zxvf apache-maven-3.9.9-bin.tar.gz -C /usr/local + # wget https://downloads.apache.org/maven/maven-3/3.9.10/binaries/apache-maven-3.9.10-bin.tar.gz + # sudo tar -zxvf apache-maven-3.9.10-bin.tar.gz -C /usr/local # cd /usr/local - # ln -s apache-maven-3.9.9 maven + # sudo ln -s apache-maven-3.9.10 maven # echo export M2_HOME=/usr/local/maven >> ~/.bashrc # or .zshrc or .profile # echo export PATH=/usr/local/maven/bin:${PATH} >> ~/.bashrc # or .zshrc or .profile # source ~/.bashrc From 465b63535e91350edbb846918272df35742159cb Mon Sep 17 00:00:00 2001 From: he1l0world Date: Fri, 13 Jun 2025 23:27:10 -0400 Subject: [PATCH 2/2] update to use the CDN link --- INSTALL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/INSTALL.md b/INSTALL.md index b975ada85ddf..c0b845185e21 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -20,7 +20,7 @@ Install tools and dependencies used for development: Set up Maven (3.9.10): - # wget https://downloads.apache.org/maven/maven-3/3.9.10/binaries/apache-maven-3.9.10-bin.tar.gz + # wget https://dlcdn.apache.org/maven/maven-3/3.9.10/binaries/apache-maven-3.9.10-bin.tar.gz # sudo tar -zxvf apache-maven-3.9.10-bin.tar.gz -C /usr/local # cd /usr/local # sudo ln -s apache-maven-3.9.10 maven