Maven 继承时 发生的奇怪版本相同时编译不通过

发布于 2021-12-05 02:42:45 字数 3300 浏览 539 评论 6

一共写了三个项目:

------Parent

------Hello

------HelloFriend

做法是 用Hello,HelloFriend的pom.xml都继承Parent的pom.xml

Parent--pom.xml

如下:

<project。。。

  <dependencies>
   <dependency>
    <groupId>junit</groupId>
    <artifactId>junit</artifactId>
    <version>4.9</version>
    <scope>test</scope>
   </dependency>
   <dependency>
    <groupId>cn.itcast.maven</groupId>
    <artifactId>Hello</artifactId>
    <version>0.0.1-SNAPSHOT</version>               // **********************注意这里
   </dependency>
   <dependency>
    <groupId>cn.itcast.maven</groupId>
    <artifactId>HelloFriend</artifactId>
    <version>0.0.1-SNAPSHOT</version>
   </dependency>
 。。。

</project>

 

在Hello--pom.xml

中继承

<project 。。。

  <parent> 
       <groupId>cn.itcast.maven</groupId>
  <artifactId>Parent</artifactId>
   <version>0.0.1-SNAPSHOT</version>
        <relativePath>../Parent/pom.xml</relativePath> 
</parent>
<dependencies>
    <dependency>
   <groupId>junit</groupId>
   <artifactId>junit</artifactId>
  </dependency>
</dependencies>

</project>

 

没有问题

 

但是在HelloFriend---pom.xml

中报错了

<project 。。。

  <parent> 
       <groupId>cn.itcast.maven</groupId>
  <artifactId>Parent</artifactId>
   <version>0.0.1-SNAPSHOT</version>
        <relativePath>../Parent/pom.xml</relativePath> 
</parent>
<dependencies>
    <dependency>
   <groupId>junit</groupId>
   <artifactId>junit</artifactId>
  </dependency>
      <dependency>
   <groupId>cn.itcast.maven</groupId>
   <artifactId>Hello</artifactId>
  </dependency>
</dependencies>

</project>

报错内容是:

Description Resource Path Location Type
ArtifactDescriptorException: Failed to read artifact descriptor for cn.itcast.maven:Hello

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

蓝颜夕 2021-12-05 08:54:00

写得不错,这里再补充下,相互学习,共同进步。

Maven详解之继承

心欲静而疯不止 2021-12-05 08:53:07

引用来自“vincent1988”的答案

你这个依赖确实有问题,简单说,依赖关系错乱,你的parent依赖子pom  而子pom依赖parent。

甜扑 2021-12-05 08:47:46

你这个依赖确实有问题,简单说,依赖关系错乱,你的parent依赖子pom  而子pom依赖parent。

终止放荡 2021-12-05 08:43:28

非常感谢,用你的方法我也解决了,初学mavenO(∩_∩)O~

眼眸里的那抹悲凉 2021-12-05 07:39:11

请问怎么解决 ArtifactDescriptorException: Failed to read artifact descriptor for com.sun.xml.bind

不乱于心 2021-12-05 06:23:41

问题已经解决, 三个配置文件都没有问题!

解决过程:重新在IDE中建立MAVEN工程,并使用统一的jdk版本, 问题不再出现(java文件pom文件没有一丝更改);

感觉是jdk版本不一致捣的鬼

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文