Maven官网http://maven.apache.org/download.cgi
想获得最新版请点击Maven官网查看,可以寻得清华镜像下的 maven tar包
http://mirrors.tuna.tsinghua.edu.cn/apache/maven/maven-3/
注意:前提是安装了JDK,若非,请参考我的这篇博客
1、获取安装包并解压
# cd /usr/local
# wget https://mirrors.tuna.tsinghua.edu.cn/apache/maven/maven-3/3.6.1/binaries/apache-maven-3.6.1-bin.tar.gz
# tar -zxvf apache-maven-3.6.1-bin.tar.gz
2、配置环境变量,添加export
# vim /etc/profile
export MAVEN_HOME=/usr/local/apache-maven-3.6.1
export PATH=${MAVEN_HOME}/bin:${PATH}
# source /etc/profile
# mvn -v
3、添加阿里云镜像
# vim $MAVEN_HOME/conf/settings.xml
或者
# cp $MAVEN_HOME/conf/settings.xml ~/.m2/settings.xml
# vim ~/.m2/settings.xml
添加以下镜像配置
<mirrors>
<!-- 当 nexus-aliyun 下不了的包,或许这个镜像能下,
才开放它,这个实在太慢,而且要把它放在首位,即 nexus-aliyun 之前,做过测试。
所以它的用途只有那么一瞬间,就是或许它能下载,可以通过 url 去查找确定一下
-->
<!-- <mirror>
<id>spring-libs-milestone</id>
<mirrorOf>central</mirrorOf>
<name>Spring Milestones</name>
<url>http://repo.spring.io/libs-milestone</url>
</mirror> -->
<!-- nexus-aliyun 首选,放第一位,有不能下载的包,再去做其他镜像的选择 -->
<mirror>
<id>nexus-aliyun</id>
<mirrorOf>central</mirrorOf>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>
<!-- 备选镜像,也是可以通过 url 去查找确定一下,
该镜像是否含有你想要的包,它比 spring-libs-milestone 快 -->
<mirror>
<id>central-repository</id>
<mirrorOf>*</mirrorOf>
<name>Central Repository</name>
<url>http://central.maven.org/maven2/</url>
</mirror>
</mirrors>