springboot 聚合项目,出现maven install时,找不到包的解决方案
如上图所示:
聚合项目打包,因为引入包找不到,而导致依赖此包的jar包无法install
如:程序包xxxx找不到,符号:类xxxx 找不到符合
解决方案:
找到依赖包,加入以下代码:
<plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <classifier>execute</classifier> </configuration> </plugin>