Eclipse (pom.xml) 中的 Maven 错误:传输 org.apache.maven.plugins:maven-surefire-plugin:pom:2.12.4 失败

Posted

技术标签:

【中文标题】Eclipse (pom.xml) 中的 Maven 错误:传输 org.apache.maven.plugins:maven-surefire-plugin:pom:2.12.4 失败【英文标题】:Maven error in eclipse (pom.xml) : Failure to transfer org.apache.maven.plugins:maven-surefire-plugin:pom:2.12.4 【发布时间】:2014-10-16 08:11:57 【问题描述】:

我想使用 Maven 制作 web 项目来自动导入我需要的所有库,所以我选择了"maven-archetype-webpp"

之后我在 pom.xml 文件中收到此错误:

Description Resource Path Location Type Failure to transfer org.apache.maven.plugins:maven-surefire-plugin:pom:2.12.4 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. Original error: Could not transfer artifact org.apache.maven.plugins:maven-surefire-plugin:pom:2.12.4 from/to central (http://repo.maven.apache.org/maven2): The operation was cancelled. pom.xml /SpringTuto line 1 Maven Configuration Problem

我更新了我的 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">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.pre.example</groupId>
  <artifactId>SpringTuto</artifactId>
  <packaging>war</packaging>
  <version>0.0.1-SNAPSHOT</version>
  <name>SpringTuto Maven Webapp</name>
  <url>http://maven.apache.org</url>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
  <build>
    <finalName>SpringTuto</finalName>
  </build>
</project>

【问题讨论】:

***.com/questions/8620127/… 我已经在 Eclipse 上安装了 Maven 解决方案:右键项目 --> 运行 --> 安装 Maven 这解决了我遇到的同样问题。 ***.com/a/38113729/4955513 【参考方案1】:

您只需按照以下步骤操作:

    右键单击您的项目:运行 (As) -> Maven clean 右键单击您的项目:运行(作为)-> Maven 安装

之后,如果在执行 Maven Install 时构建失败,则表示 WEB-INF 下没有 web.xml 文件或与之相关的一些问题。 真的好用

【讨论】:

发生了什么以及为什么它可以解决问题。请在你的回答中解释。我猜 maven 没有安装,但让我们确定一下。【参考方案2】:

右键单击项目-> Maven->单击复选框“强制更新”->更新

【讨论】:

【参考方案3】:

只需右键单击您的项目,将鼠标悬停在 maven 上,然后单击更新项目.. 完成!

【讨论】:

OP 声明“我更新了我的 Maven 项目,但没有结果”。您说简单地更新项目就是解决方案。真的吗?【参考方案4】:

在我的情况下,这是一个失败的 Eclipse 导入。 我不得不从 eclipse 中删除项目(当然不从文件系统中删除)并重新导入它。之后错误立即消失。

【讨论】:

【参考方案5】:

如果您使用的是 Eclipse Neon,请尝试以下操作:

1) 在 POM 的属性部分添加 maven 插件:

<properties>
    <java.version>1.8</java.version>
    <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
</properties>

2) 通过右键单击 Project 强制更新项目快照

Maven -> 更新项目 -> 选择您的项目 -> 勾选“强制更新快照/发布”选项 -> 确定

【讨论】:

【参考方案6】:

右键单击您的项目:运行(As)-> Maven clean 右键单击您的项目:运行(作为)-> Maven 安装

【讨论】:

【参考方案7】:

Unix 用户

find ~/.m2 -name "*.lastUpdated" -exec grep -q "Could not transfer" \; -print -exec rm \;

右键单击您的项目并选择更新依赖项

适用于 Windows

CD(更改目录)到 .m2\repository 执行命令for /r %i in (*.lastUpdated) do del %i 然后右键单击 您的项目并选择更新依赖项

【讨论】:

【参考方案8】:

在我的例子中,eclipse 使用的是旧的 settings.xml 文件。

【讨论】:

【参考方案9】:

对于这个问题,我有一个更简单的解决方案,它对我很有用。

只需选择您的项目

右键单击并选择属性

在左侧边栏列表中选择Java Build Path

Order and Export 选项卡中检查 (1) JRE System Library[您的 java 版本] 和 (2) Maven Dependencies(其中最初是未选中的)。

然后点击应用并关闭按钮。

只需更新您的项目(点击应用和关闭时自动更新),错误就消失了。

【讨论】:

以上是关于Eclipse (pom.xml) 中的 Maven 错误:传输 org.apache.maven.plugins:maven-surefire-plugin:pom:2.12.4 失败的主要内容,如果未能解决你的问题,请参考以下文章

Eclipse Maven:pom.xml 中的未知错误

eclipse中的Maven pom.xml错误[重复]

Eclipse 中的 Maven 依赖项与 pom.xml 不匹配

eclipse webapp中的pom.xml文件出错

maven 的install插件放在哪

Eclipse (pom.xml) 中的 Maven 错误:传输 org.apache.maven.plugins:maven-surefire-plugin:pom:2.12.4 失败