新建maven项目pom.xml文件报错
Posted sjjava
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了新建maven项目pom.xml文件报错相关的知识,希望对你有一定的参考价值。
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文件报错的主要内容,如果未能解决你的问题,请参考以下文章
idea新建spring boot项目使用maven引入依赖失败,pom.xml文件中project标签报错