0

我的本地存储库已经有 cxf-bundle-2.7.5.jar(我自己从 search.maven.org 下载)和 pom 但 eclipse 仍然收到错误“缺少工件 org.apache.cxf:cxf-bundle:bundle:2.7 .5' 并且当我更新项目存储库时,每次都会创建一个文件 cxf-bundle-2.7.5.bundle.lastUpdated 。我该如何解决这个问题以及为什么。

<dependency>
        <groupId>org.apache.cxf</groupId>
        <artifactId>cxf-bundle</artifactId>
        <version>2.7.5</version>
        <type>bundle</type>
    </dependency>

谢谢!!!

4

1 回答 1

6

简单的答案是,捆绑并不是真正意义上的捆绑类型。如果您查看search.maven.org,您会看到有可用的 jar、source、javadoc,因此您需要将依赖项定义更改为以下内容:

<dependency>
    <groupId>org.apache.cxf</groupId>
    <artifactId>cxf-bundle</artifactId>
    <version>2.7.5</version>
</dependency>
于 2013-05-19T11:26:52.430 回答