https://archive.apache.org/dist/maven/maven-3/3.5.4/binaries/
tar -zxvf apache-maven-3.5.4-bin.tar.gz
<localRepository>/opt/jarstore</localRepository>
<mirror>
<id>alimaven</id>
<mirrorOf>central</mirrorOf>
<name>aliyun maven</name>
<url>https://maven.aliyun.com/repository/central</url>
</mirror>
<mirror>
<id>aliyun-maven</id>
<mirrorOf>*</mirrorOf>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>
vim /etc/profile
export MAVEN_HOME=/opt/inst/maven354
export PATH=$PATH:$MAVEN_HOME/bin
source /etc/profile
mvn -version
原文地址:https://blog.51cto.com/14497235/2430282
时间: 2024-12-15 00:29:50