码迷,mamicode.com
首页 > 其他好文 > 详细

新建maven项目pom.xml文件报错

时间:2018-08-21 10:42:49      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:nsf   resources   ORC   central   depend   inter   题解   成功   resource   

1、背景交代

新建了一个练手的项目,准备了解一下springBoot的使用(之前没有用过springBoot),百度了一下springBoot教程发现大多数使用maven来管理jar包的引入。因此顺带学习了一下maven,以此贴记录我在使用maven过程中所遇到的一串问题以及解决的办法。

2、所遇问题

myeclipse直接创建maven project,创建成功之后发现pom.xml文件报错,报错的内容是:

Could not calculate build plan: Plugin org.apache.maven.plugins:maven-resources-plugin:2.4.3 or one of its
dependencies could not be resolved: Failure to transfer org.apache.maven.plugins:maven-resources-plugin:jar:2.4.3
from http://repo1.maven.org/maven2 was cached in the local repository, resolution will not be reattempted
until the update interval of central has elapsed or updates are forced. Original error: Could not transfer
artifact org.apache.maven.plugins:maven-resources-plugin:jar:2.4.3
from/to central (http://repo1.maven.org/maven2): invalid version format: S:

3、解决方案

在pom.xml文件中添加:

<dependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.4.3</version>
</dependency>

然后update project 问题解决

新建maven项目pom.xml文件报错

标签:nsf   resources   ORC   central   depend   inter   题解   成功   resource   

原文地址:https://www.cnblogs.com/sjjava/p/9509499.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!