赞
踩
描述:使用springboot、springcloud框架,父子module项目,使用maven clear/install的时候出现下面错误
- [ERROR] Some problems were encountered while processing the POMs:
- Invalid packaging for parent POM org.springframework.boot:spring-boot-starter:2.0.6.RELEASE, must be "pom" but is "jar" @ org.springframework.boot:spring-boot-starter:2.0.6.RELEASE
依赖:
- <parent>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter</artifactId>
- <version>2.1.6.RELEASE</version>
- <relativePath/>
- </parent>
1、对于出现这个问题是原因,是因为pom坐标引用错误,一定要注意pom坐标的,不然是个大坑,项目也可以启动成功,就是打包失败,正确的pom坐标在下面。
- <parent>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-parent</artifactId>
- <version>2.1.6.RELEASE</version>
- <relativePath/>
- </parent>
更换坐标后可以打包成功。
2、在父子module项目,父项目没有在pom.xml指定打包方式,如果在其它module有引用,子module需要是pom方式打包,如果只是业务代码,打包方式一般是jar打包方式。
<packaging>pom</packaging>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。