下面分两种情况分别给出解决方法
- 公共服务(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>
注:当你的服务没有配置main方法,需要增加以下几行
<executions> <execution> <phase>none</phase> </execution> </executions>
- 其他类或者微服务
<build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build>