- 配置环境变量:【跟Java差不多我就不给图了】
找到maven安装的bin目录所对应的路径:
这里我的路径是:E:\xx\软件工具\apache-maven-3.5.2
然后在环境变量新建一个变量MAVEN_HOME,路径为上面的路径
再在path中新建一个%MAVEN_HOME%/bin
- 配置本地仓库:
修改conf/settings.xml中的
<localRepository>
为一个指定目录:
3. 配置阿里云私服
修改conf/settings.xml中的
<mirror>
<!--This sends everything else to /public -->
<id>nexus</id>
<mirrorOf>*</mirrorOf>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
</mirror>
<mirror>
<!--This is used to direct the public snapshots repo in the
profile below over to a different nexus group -->
<id>nexus-public-snapshots</id>
<mirrorOf>public-snapshots</mirrorOf>
<url>http://maven.aliyun.com/nexus/content/repositories/snapshots/</url>
</mirror>
标签:路径,nexus,配置,snapshots,maven,安装,public
From: https://www.cnblogs.com/Liku-java/p/17033231.html