在公共子產品的pom中添加以下一下代碼:module a 依賴 公共子產品中commom的 module ,a打包的時候報“程式包***不存在,找不到符号”錯誤,都是module 依賴公共的子產品。
1.在公共子產品或者目前子產品下加入打包工具
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<classifier>exec</classifier>
</configuration>
</plugin>
</plugins>
</build>
或者子子產品使用 pom 打包方式即可解決
<packaging>pom</packaging>