1. maven下载地址http://maven.apache.org/download.cgi
2. maven压缩包不需要安装,但是需要手动添加环境变量
MAVEN_HOME:E:\Maven\apache-maven-3.3.9
Path:;%MAVEN_HOME%\bin
3. 设置setting.xml
setting.xml有两个,
1.安装的地方:${M2_HOME}/conf/settings.xml
2.用户的目录:${user.home}/.m2/settings.xml
前者为全局变量,后者为局部变量。局部变量可以没有,但是当局部变量和全局变量都存在时,以局部变量为准
setting的设置主要是更改源,打开文件添加
<mirrors>
<mirror>
<id>nexus-aliyun</id>
<mirrorOf>*,!jeecg,!jeecg-snapshots</mirrorOf>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>
</mirrors>