1)、将maven的压缩包传入到linux的/opt下 2)、解压maven压缩包并将解压后的文件移入/opt/inst/中
tar -zxvf apache-maven-3.5.4-bin.tar.gz
mv apache-maven-3.5.4 /opt/inst/maven354
3)、配置本地仓库和远程阿里中央仓库
创建本地仓库目录: mkdir /opt/jarstore
阿里远程仓库: <mirror> <id>alimaven</id> <mirrorOf>central</mirrorOf> <name>aliyun maven</name> <url>https://maven.aliyun.com/repository/central</url> </mirror> <mirror> <id>nexus-aliyun</id> <mirrorOf>*</mirrorOf> <name>Nexus aliyun</name> <url>http://maven.aliyun.com/nexus/content/groups/public</url> </mirror> 4)、配置环境变量 5)、激活配置文件 6)、查看版本