解决maven 的pom.xml爆红(plugins-jar)

为了解决Maven的pom.xml文件报错,可以首先确保在settings.xml中配置了正确的路径,并添加阿里云仓库的镜像配置。在pom.xml中加入<repositories>和<pluginRepositories>节点,指定阿里云的公共仓库URL,这样可以加速依赖下载,解决爆红问题。
摘要由CSDN通过智能技术生成

解决maven 的pom.xml爆红

1.每次启动新项目,首先在setting里

配置好正确的路径,系统默认的m2找不到setting.xml这个文件的

 

2.在setting.xml里补充一段镜像代码并保存

 

3.解决爆红问题

在pom.xml文件中加入以下代码

<repositories>
<repository>
<id>alimaven</id>
<url>https://maven.aliyun.com/repository/public</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>alimaven</id>
<url>https://maven.aliyun.com/repository/public</url>
</pluginRepository>
</pluginRepositories>

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值