标签:cmd font ali tin tor local ups style 阿里云
lichengbei
2018-12-21
下载Maven的ZIP包,并解压到安装位置
系统环境变量新增加“MAVEN_HOME”,值为Maven安装路径,比如“C:\MySoft\apache-maven-3.5.3”
Path追加“;%MAVEN_HOME%\bin”
Windows键+R进入运行窗口,cmd下mvn -version查看是否安装并配置成功
修改Maven的settings.xml文件,注意不要使用空格,可以用tab键,指定本地仓库路径
<localRepository>C:\MySoft\apache-maven-3.5.3\repo</localRepository>
修改镜像源为国内的,比如阿里云
<mirrors>
<mirror>
<id>nexus-aliyun</id>
<mirrorOf>central</mirrorOf>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>
</mirrors>
标签:cmd font ali tin tor local ups style 阿里云
原文地址:https://www.cnblogs.com/lichengbei/p/12079207.html