4

我正在使用 m2e 插件在 Eclipse 中开发一个 java maven 项目。我更新了我的系统,我的 jvm 从 icedtea-bin-6.1.11.4 更新到了 icedtea-bin-6.1.11.5。Eclipse 现在在我的 pom 文件中输出以下错误,我无法运行我的项目。我是 maven 和 eclipse 的新手,经过一天的谷歌搜索,我仍然没有找到解决方案。

我个人认为这是 eclipse 的某种问题(配置错误?),因为我能够在命令行上成功构建mvn clean install -U. 此外,即使在没有安装插件的全新 Eclipse 安装中,我也会遇到同样的错误。

错误:

执行目标 org.apache.maven.plugins:maven-resources-plugin:2.5:resources 的默认资源失败:无法解析插件 org.apache.maven.plugins:maven-resources-plugin:2.5 或其依赖项之一: 从http://repo.maven.apache.org/maven2传输 commons-cli:commons-cli:jar:1.0 失败被缓存在本地仓库中,直到 Central 的更新间隔过去后才会重新尝试解析或强制更新。原始错误:无法将工件 commons-cli:commons-cli:jar:1.0 从/传输到中央(http://repo.maven.apache.org/maven2):到http://repo.maven 的连接超时。 apache.org/maven2/commons-cli/commons-cli/1.0/commons-cli-1.0.jar (org.apache.maven.plugins:maven-resources-plugin:2.5:resources:default-resources:process-resources)

环境细节。

Maven:Apache Maven 2.2.1 (r801777; 2009-08-06 20:16:01+0100) Java 版本:1.6.0_24 Java 主页:/opt/icedtea-bin-6.1.11.5/jre

Eclipse:版本:Juno Service Release 1 Build id:20121004-1855

插件:m2e - Eclipse 1.2.0.20120903-1050 的 Maven 集成 m2e - 通过 logback 日志记录的 slf4j(可选)1.2.0.20120903-1050

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/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <groupId>com.test</groupId>
  <artifactId>mf</artifactId>
  <version>0.1-SNAPSHOT</version>
  <packaging>jar</packaging>

  <name>mf</name>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>

  <dependencies>
    <dependency>
      <groupId>cc.mallet</groupId>
      <artifactId>mallet</artifactId>
      <version>2.0.7-RC2</version>
    </dependency>

    <dependency>
      <groupId>com.googlecode.efficient-java-matrix-library</groupId>
      <artifactId>ejml</artifactId>
      <version>0.20</version>
    </dependency>

    <dependency>
      <groupId>jfreechart</groupId>
      <artifactId>jfreechart</artifactId>
      <version>1.0.0</version>
    </dependency>
  </dependencies>

   <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>2.3.2</version>
        <configuration>
          <source>1.6</source>
          <target>1.6</target>
        </configuration>
      </plugin>

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <version>2.3.1</version>
        <configuration>
          <archive>
            <manifestEntries>
              <Main-Class>lda.TMRS</Main-Class>
            </manifestEntries>
          </archive>
        </configuration>
      </plugin>

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-shade-plugin</artifactId>
        <version>1.7</version>
        <executions>
          <execution>
            <id>shade</id>
            <goals>
              <goal>shade</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>

</project>

有人对如何摆脱此错误有任何建议吗?

4

1 回答 1

4

您已在本地存储库中缓存文件。看:
Failure to transfer commons-cli:commons-cli:jar:1.0 from http://repo.maven.apache.org/maven2 was cached in the local repository

尝试$M2_HOME/repository从您的以下文件中删除一个或仅提到的文件$M2_HOME/repository

  • 公共-cli/公共-cli*
于 2012-11-14T07:23:10.867 回答