如上圖所示:
聚合項目打包,因為引入包找不到,而導致依賴此包的jar包無法install
如:程序包xxxx找不到,符號:類xxxx 找不到符合
解決方案:
找到依賴包,加入以下代碼:
<plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <classifier>execute</classifier> </configuration> </plugin>