下载地址、配置环境变量和如何搭载到eclipse,操作过程在下面:
https://www.cnblogs.com/pengyan-9826/p/7767070.html
介绍的很详细,不过配置好环境变量后,不急着去搭载到eclipse,先去setting.xml修改本地仓库。
该博客中,还缺少点东西:
1.镜像地址,直接从中央库下载速度很慢,一般都是使用aliyun的镜像地址,在
标签内,添加:
<mirror>
<id>nexus-aliyun</id>
<mirrorOf>central</mirrorOf>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>
2.配置一个Nexus的工厂,若在pom.xml里配置,则每个项目都要配置一次repositories,所以如果只是自己电脑写着玩,干脆直接在setting.xml配置,作用于所有项目,在profiles标签内,添加:
<profile>
<id>dev</id>
<repositories>
<repository>
<id>nexus-aliyun</id>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
</profile>
在setting.xml中配置了profile以后,pom.xml中的就可以去掉了。最后,要激活才能生效,在profiles标签后面,添加:
<activeProfiles>
<!--激活了才生效-->
<activeProfile>nexusProfile</activeProfile>
</activeProfiles>
参考地址:https://blog.csdn.net/cwh056056/article/details/49642715