我希望有人能帮助我解决一个我正在挣扎的问题。

当我试图从终端构建我的项目时,我得到这个错误:

Failed to read artifact descriptor for com.morrislgn.merchandising.common:test-data-utils:jar:0.3b-SNAPSHOT: Could not find artifact com.morrislgn.merchandising:merchandising:pom:0.3b-SNAPSHOT

常见的。Test-data-utils jar由一个单独的项目创建,并在这个项目和另一个项目之间共享(另一个项目也没有构建,但这是另一个问题)。

我能够毫无问题地构建com.morrislgn.merchandising.common:test-data-utils,我可以看到它在我机器上的.m2本地存储库中的条目。我还在Eclipse中重新索引了我的存储库。

我的项目的POM有这样的条目:

<dependency>
    <groupId>com.morrislgn.merchandising.common</groupId>
    <artifactId>test-data-utils</artifactId>
    <version>0.3b-SNAPSHOT</version>
</dependency>

这对我来说似乎是正确的——在Eclipse中查看POM时,它也没有报告任何错误。

谁能告诉我这里我缺了什么或做错了什么?


当前回答

如果您正在使用Eclipse,右键单击您的项目-> Maven ->更新项目。它将打开“更新Maven项目”对话框。

在该对话框中,选中强制更新快照/发布复选框并单击确定。(请参考下图)

这对我很管用!

其他回答

“读取工件描述符失败”问题通常表明maven存储库中依赖项的pom文件有问题。我建议您仔细检查pom文件的名称是否与maven期望的名称相同,并检查pom文件内容是否有效。

如果您有一些引用父pom的子项目,并且您没有从父pom目录安装(从父目录运行mvn install),则可能发生此问题。其中一个子项目可能依赖于一个兄弟项目,当它读取兄弟项目的pom时,它将失败,并出现问题中提到的错误,除非您至少从父pom目录安装过一次。

我刚刚在把一个项目转移到一台新电脑上时遇到了这个问题。我习惯在子项目上运行命令,而不在父项目上运行install。

在我们的例子中,出现错误是因为在多模块Maven配置中的一些项目引用其他项目时,groupId重命名不正确。

我们有一个聚合器项目(billing-parent),有两个模块(billing-api, billing):

com.company.team:billing-parent
|-com.company.team:billing-api
|-com.company.team:billing

项目计费依赖于billing-api。在它的pom。xml中有:

<dependency>
    <groupId>com.company.team</groupId>
    <artifactId>billing-api</artifactId>
    <version>${project.version}</version>
</dependency>

我们决定将groupId从com.company.team重命名为com.company.team.billing。我们替换了父模块的pom.xml和两个模块的<parent>部分中的旧值。但是忘记更新上面的依赖项。因此,我们已经获得了计费项目引用旧的计费api工件的配置。最终,它喙构建计费模块后,一段时间的错误,如

[ERROR] Failed to execute goal on project billing: Could not resolve dependencies for project com.company.team.billing:billing:jar:3.5.1-SNAPSHOT: Failed to collect dependencies at com.company.team:billing-api:jar:3.5.1-SNAPSHOT: Failed to read artifact descriptor for com.company.team:billing-api:jar:3.5.1-SNAPSHOT: Failed to find <parent of the com.company.team:billing-parent project which is not available any more>

尽管billing-api模块构建时没有错误。

解决方案1:在依赖项中重命名groupId。

解决方案2:用${项目替换groupId。groupId}属性如下:

<dependency>
    <groupId>${project.groupId}</groupId>
    <artifactId>billing-api</artifactId>
    <version>${project.version}</version>
</dependency>

结论。 因此,如果你在多模块配置中遇到错误,我的建议是:彻底检查groupId和artifactId对邻居模块的依赖关系。

如果您正在使用Eclipse:

右键单击项目>属性> Maven 确保没有单击“从工作空间项目解析依赖项”。

我在eclipse中遇到了这个问题,mvn - u清洁安装不工作,但右键单击项目并选择Maven->更新项目修复了它。