多模块maven 打包异常

聚合工程 maven 打包异常
Non-resolvable parent POM for xxx

image-20230410181330397

[WARNING] 'version' contains an expression but should be a constant.

取消父工程版本中的属性值,替换成指定的常量

<!-- 项目描述(异常) -->
<groupId>com.smile</groupId>
<artifactId>livechat</artifactId>
<version>${version}</version>
<name>Livechat</name>
<description>Livechat 微服务项目</description>

<!-- 项目描述(解决) -->
<groupId>com.smile</groupId>
<artifactId>livechat</artifactId>
<version>1.0.0-SNAPSHOT</version>
<name>Livechat</name>
<description>Livechat 微服务项目</description>
程序包xxx不存在

image-20230410165731115

出现的原因:

Spring Boot 中默认打包成的 jar 叫做 可执行 jar,这种 jar 不同于普通的 jar,普通的 jar 不可以通过 java -jar xxx.jar 命令执行,普通的 jar 主要是被其他应用依赖,Spring Boot 打成的 jar 可以执行,但是不可以被其他的应用所依赖,即使强制依赖,也无法获取里边的类

解决方案:

取消父pom的spring-boot-maven-plugin插件,定义在需要打包成springboot jar包的module中

https://blog.csdn.net/SnailMann/article/details/81710461

https://blog.csdn.net/weixin_45760137/article/details/118725697

posted @ 2023-04-10 20:18  易文杰  阅读(143)  评论(0编辑  收藏  举报