Eclipse配置Maven环境

本文详细介绍Maven的配置过程,包括下载、环境变量设置、本地仓库修改及如何在Eclipse中搭建。特别强调了镜像地址的配置,推荐使用阿里云镜像加速下载,并介绍了如何在setting.xml中配置Nexus仓库,简化pom.xml文件。
摘要由CSDN通过智能技术生成

下载地址、配置环境变量和如何搭载到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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值