Maven异常:Could not find artifact xxxx:pom

https://blog.csdn.net/qq_30059235/article/details/108562275

1. maven报错

因为是聚合工程,每个子模块的pom里面都有个

<parent>
    <groupId>com.xxx</groupId>
    <artifactId>xxxx</artifactId>
    <version>1.0-SNAPSHOT</version>
    <relativePath/> <!-- lookup parent from repository -->
</parent>

在执行 mvn clean 、mvn install 等时都会报错 Could not find artifact xxxx:pom
解决办法: 删掉
解释:这个标签的意思是:父项目的pom.xml文件的相对路径。相对路径允许你选择一个不同的路径。默认值是../pom.xml。Maven首先在构建当前项目的地方寻找父项 目的pom,其次在文件系统的这个位置(relativePath位置),然后在本地仓库,最后在远程仓库寻找父项目的pom。

上一篇:could not broadcast input array from shape (64,64,3) into shape (64,64,4)


下一篇:TOMCAT 报Could not initialize class sun.awt.X11GraphicsEnvironmen异常处理