16

如下所示,运行时出现错误mvn package

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-jar-plugin:2.3.1:jar (default-jar) on project hello-world: Execution default-jar of goal org.apache.maven.plugins:maven-jar-plugin:2.3.1:jar failed: Unable to load the mojo 'jar' in the plugin 'org.apache.maven.plugins:maven-jar-plugin:2.3.1'. A required class is missing: org/codehaus/plexus/components/io/resources/PlexusIoResourceCollection
[ERROR] -----------------------------------------------------
[ERROR] realm =    plugin>org.apache.maven.plugins:maven-jar-plugin:2.3.1
[ERROR] strategy = org.codehaus.plexus.classworlds.strategy.SelfFirstStrategy
[ERROR] urls[0] = file:/C:/maven/repository/org/apache/maven/plugins/maven-jar-plugin/2.3.1/maven-jar-plugin-2.3.1.jar
[ERROR] urls[1] = file:/C:/maven/repository/junit/junit/3.8.1/junit-3.8.1.jar
[ERROR] urls[2] = file:/C:/maven/repository/org/apache/maven/maven-archiver/2.4.1/maven-archiver-2.4.1.jar
[ERROR] urls[3] = file:/C:/maven/repository/org/codehaus/plexus/plexus-archiver/1.0/plexus-archiver-1.0.jar
[ERROR] urls[4] = file:/C:/maven/repository/commons-lang/commons-lang/2.1/commons-lang-2.1.jar
[ERROR] urls[5] = file:/C:/maven/repository/org/codehaus/plexus/plexus-utils/2.0.5/plexus-utils-2.0.5.jar
[ERROR] Number of foreign imports: 1
[ERROR] import: Entry[import  from realm ClassRealm[maven.api, parent: null]]
[ERROR] 
[ERROR] -----------------------------------------------------: org.codehaus.plexus.components.io.resources.PlexusIoResourceCollection
[ERROR] -> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/PluginContainerException

这是我的 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>sds.jetty.simple</groupId>
<artifactId>hello-world</artifactId>
<version>1.0</version>
<packaging>jar</packaging>
<name>Jetty HelloWorld</name>

<properties>
    <jettyVersion>8.1.2.v20120308</jettyVersion>
</properties>

<dependencies>
    <dependency>
        <groupId>org.eclipse.jetty</groupId>
        <artifactId>jetty-server</artifactId>
        <version>${jettyVersion}</version>
    </dependency>
</dependencies>

<build>
</build>
</project>
4

11 回答 11

7

尝试删除到文件夹

.m2\repository\org\apache\maven\plugins\maven-jar-plugin

在您的文件系统上。您的插件 jar 可能已损坏。

如果这不起作用,请尝试删除 jetty-server 文件夹(相同原因)

于 2012-09-11T15:38:39.123 回答
2

我曾经遇到过类似的问题。原来是maven 3问题。切换到 maven 2.2.1 后,我的构建运行良好。

于 2012-09-14T08:16:22.557 回答
2

甚至面临这个问题。只需删除 .m2/repository 文件夹并再次构建项目即可解决此问题。

于 2017-10-27T14:20:02.560 回答
0

适用于您的示例 POM 文件,问题应该出在其他地方。

你确定那里没有连接问题吗?您的防病毒软件不会阻止您下载工件?您的本地存储库中的条目是否已损坏?

于 2012-09-11T09:18:13.823 回答
0

这是 Maven 3.3.1 和 3.3.3 中未解决的问题;https://issues.apache.org/jira/browse/MNG-5787 我升级到 3.3.9 并开始工作。

于 2016-07-27T04:48:21.490 回答
0

使用 maven 3.6.3 版我遇到了同样的错误。就我而言,这不是 Maven 的问题。但是我在 src/resource 文件夹中复制了一个非常大的文件夹(5 GB)。删除垃圾文件夹后,一切正常。

于 2021-02-10T17:25:56.447 回答
0

1.我会建议你完全删除.m2文件夹

2.然后做maven->更新项目。

3.Maven安装

于 2019-12-05T16:32:19.903 回答
0

我最近遇到了这个问题,我只需要从 .m2/repository 中删除文件夹并重新运行 pom。有效。

于 2016-09-28T19:49:37.657 回答
0

用 Java 8 而不是 Java 6 编译已经解决了我的问题。

于 2021-03-19T14:50:57.973 回答
-1

对我们来说,这是因为 Eclipse / Maven 自动将我们的 JDK 更改为 1.5(从 1.8)。手动改回 1.8 解决了这个问题。

于 2015-02-25T21:11:36.170 回答
-1

maven 无法即时解决的依赖项中应该存在一些问题。尝试在您的项目根目录上运行此命令。

mvn dependency:tree

这应该可以解决所有依赖问题并帮助您运行应用程序

于 2019-11-15T10:31:00.683 回答