1下载MAVEN
下载地址:http://maven.apache.org/download.cgi,下载后直接解压缩即可
2MAVEN配置
1、新建系统变量MAVEN_HOME,值为maven所在目录
2、在系统变量PATh中添加%MAVEN_HOME%\bin
3MAVEN本地仓库
修改maven根目录下conf文件夹中的setting.xml文件,设置<localRepository>自己的仓库目录</localRepository>
4修改MAVEN镜像
在setting.xml中添加阿里云镜像
<mirror>
<id>alimaven</id>
<mirrorOf>central</mirrorOf>
<name>aliyun maven</name>
<url>http://maven.aliyun.com/nexus/content/repositories/central/</url>
</mirror>