pom.xm首行报错Failure to transfer org.codehaus.plexus:plexus-components:pom:1.1.20

从SVN导出一个Maven项目,pom.xml首行报错:

Failure to transfer org.codehaus.plexus:plexus-components:pom:1.1.20 from http://maven.oschina.net/content/groups/public/ was cached in the local repository, resolution
 will not be reattempted until the update interval of CN has elapsed or updates are forced. Original error: Could not transfer artifact org.codehaus.plexus:plexus-
 components:pom:1.1.20 from/to CN (http://maven.oschina.net/content/groups/public/): java.net.ConnectException: connection timed out to http://maven.oschina.net/
 content/groups/public/org/codehaus/plexus/plexus-components/1.1.20/plexus-components-1.1.20.pom

亲测了很多办法,都没有效果,最终找到这个可行的。

<!-- war 打包插件, 设定war包名称不带版本号 -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<!-- <version>2.5.1</version> -->
<version>2.4</version>
<configuration>
<warName>${project.artifactId}</warName>
</configuration>
</plugin>

根据该方法,将版本改为2.4,立刻错误消失。但是pom.xml在菜单上还是有红叉,所幸的是该文件已经没有错误了,可以执行。

MAVEN:Failure to transfer org.codehaus.plexus:plexus-io:jar:2.4.1

其他亲测,无效的方案(东方不亮西方亮):

Maven工程错误 之 Failure to transfer org.codehaus.plexus:plexus-archiver:pom:1.0

时间: 2024-11-03 03:25:12

pom.xm首行报错Failure to transfer org.codehaus.plexus:plexus-components:pom:1.1.20的相关文章

导入Maven 工程pom.xml首行报错解决方法

1.利用IDE导入一个Maven工程,但是pom.xml文件首行报错,发现是maven版本需要升级 2.在pom.xml文件 增加配置 <properties> <maven-jar-plugin.version>2.6</maven-jar-plugin.version></properties> 3.以eclipse为例,菜单help->install new software Name:MavenArchiver location:http://

maven报错 Failure to transfer org.apache.maven.plugins:maven-compiler-plugin:pom:3.5.0 from

maven报错误,类似于: Failure to transfer org.apache.maven.plugins:maven-compiler-plugin:pom:3.5.0 from https://repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elaps

maven创建web报错failure to transfer org.codehaus.plexus

failure to transfer org.codehaus.plexus:plexus:pom:2.0.5 from http:// repo.maven.apache.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.  Origin

记一次springboot下maven工程方式导入pom.xml首行报错

今天maven工程pom.xml报错,错误类型unkown,没有任何提示信息,个人思路先检查一下配置文件的语法格式是否正确,本人因为之前也有类似错误经验,觉得应该是配置问题中的版本问题,最好能找下网上关于该涉及软件之间的版本支持情况,如果找不到可以尝试将版本号调小,还可以参考以前正确配置也是不错呢.我是一开始版本是2.1.5release这个版本改成2.1.4即不再报错了当然里面涉及版本以及只要配置的都可以尝试的调整一下,注意每次都刷新一下,以定位问题所在.<groupId>org.sprin

POM报错Failure to transfer org.apache.maven.plugins:maven-resources-plugin:pom:2.6 from

解决方式一: 1.查看.m2\repository\org\apache\maven\plugins\maven-resources-plugin\下maven-resources-plugin-2.6.jar文件是否存在,用rar打开是否正常的,如果都正常,则说明jar包没有问题 2.重新执行一遍maven install 即可 解决方式二: 在用Eclipse IDE for Java EE Developers进行maven项目的开发时,报错Could not calculate buil

eclipse中pom.xml首行报错

在pom.xml添加 <properties> <maven-jar-plugin.version>2.6</maven-jar-plugin.version> </properties> 可以解决 原文地址:https://www.cnblogs.com/5200-sjt/p/11492342.html

导入maven项目pom.xml首行报错missing artifact。。。

解决方法: 在maven地址(如一般默认的地址C:\Users\Administrator\.m2\repository\)找到对应包名 加后缀名为.lastUpdated文件(如:ojdbc14.lastUpdated),删除,或整个包文件都删除. 进到eclipse右击项目maven-->updateproject,让它重新下载就可以了 原文地址:https://www.cnblogs.com/renxiuxing/p/12078699.html

maven项目pom.xml第一行报错

maven项目pom.xml第一行报错 这是第一行:<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd&q

pom文件第一行报错(unknown)

问题: Eclipse导入maven项目时,或者新建一个springboot项目时,pom.xml文件第一行报错,没有错误信息提示,就一个Unknown,但是项目可以正常运行. 如下图: 原因: 因为版本升级了(2.2.6.RELEASE),开发工具不兼容导致. 解决: 在pom.xml 文件中的 properties 加入maven jar 插件的版本号.如下图: 然后maven --> update project 就可以发现万恶的小红叉消失了. 注意:这里的3.1.1版本不是自己用的mav