Maven BUILD FAILURE

本文最后更新于:2025年3月11日 晚上

Maven BUILD FAILURE

详细异常:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[INFO] ------------------------< com.heima:hmall-api >-------------------------
[INFO] Building hmall-api 1.0.0
[INFO] --------------------------------[ jar ]---------------------------------
Downloading from alimaven: http://maven.aliyun.com/nexus/content/groups/public/com/heima/hmall/1.0.0/hmall-1.0.0.pom
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 1.563 s
[INFO] Finished at: 2025-03-11T21:47:49+08:00
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal on project hmall-api: Could not resolve dependencies for project com.heima:hmall-api:jar:1.0.0: Failed to collect dependencies at com.heima:hmall-common:jar:1.0.0: Failed to read artifact descriptor for com.heima:hmall-common:jar:1.0.0: Could not find artifact com.heima:hmall:pom:1.0.0 in alimaven (http://maven.aliyun.com/nexus/content/groups/public/) -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionException

进程已结束,退出代码为 1

原因总结:

问题历程:

我是先安装了common模块到本地Maven仓库,这个模块是直接在子模块上构建并安装的。

api模块引用了common模块,但是再次构建api子模块是发生此异常。

异常分析:

Maven需要先找到项目父模块,然后通过父模块找到子模块安装的信息。所以需要先在父模块进行一次install,让Maven仓库有此项目的父模块的信息,这样才能通过父模块找到子模块。

解决方法:

删除本地仓库已安装的数据,重新在父模块上执行install即可成功解决!之后再从子模块上构建也不会出现此类问题了。

成功安装示例:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[INFO] --- maven-install-plugin:2.4:install (default-install) @ hmall-api ---
[INFO] Installing D:\home\hmall\hmall-api\target\hmall-api.jar to D:\repository\com\heima\hmall-api\1.0.0\hmall-api-1.0.0.jar
[INFO] Installing D:\home\hmall\hmall-api\pom.xml to D:\repository\com\heima\hmall-api\1.0.0\hmall-api-1.0.0.pom
[INFO] ------------------------------------------------------------------------
[INFO] Reactor Summary for hmall 1.0.0:
[INFO]
[INFO] hmall .............................................. SUCCESS [ 0.592 s]
[INFO] hmall-common ....................................... SUCCESS [ 3.135 s]
[INFO] hmall-api .......................................... SUCCESS [ 1.446 s]
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 5.498 s
[INFO] Finished at: 2025-03-11T22:05:38+08:00
[INFO] ------------------------------------------------------------------------

注:为防止安装了未完善的子模块,可以在父模块先把对应子模块的信息注释掉。


Maven BUILD FAILURE
https://superlovelace.top/2025/03/11/Maven构建失败问题/
作者
棱境
发布于
2025年3月11日
更新于
2025年3月11日
许可协议