有一種情況,如果你是SpringBoot項目,然后你的工程依賴於其他工程,比如說你的一個服務依賴於一個common工程,那么這個時候,你common工程打包沒問題,你的服務工程打包會提示依賴common工程的類不存在、找不到,這個時候問題是處在common工程打包時的問題,我們更改common工程的打包插件:
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<executions>
<execution>
<phase>none</phase>
</execution>
</executions>
<configuration>
<classifier>execute</classifier>
</configuration>
</plugin>
</plugins>
</build>
