a) 官网下载:
http://maven.apache.org/download.cgi
下载后解压就可以了
b) 环境变量配置
(window):
添加 MAVEN_HOME:
G:\apache-maven-3.3.9
Path下添加:
% MAVEN_HOME %\bin
(linux):
vim /etc/profile
#在其中加入maven路径代码
MAVEN_HOME=/app/java/maven/apache-maven-3.3.9
export MAVEN_HOME
export PATH=${PATH}:${MAVEN_HOME}/bin
source /etc/profile #是资源文件生效,这样就不用重启系统了
c) 修改settings.xml文件,更加好的管理maven
i、更改本地仓库地址:
<localRepository>/path/to/local/repo</localRepository>
ii、修改成为阿里云的镜像:
<mirror>
<id>alimaven</id>
<mirrorOf>central</mirrorOf>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
</mirror>
网友评论