我们常常在父maven中已经引入了springboot打包的方式,所以一般情况下在子工程中是不需要再次引用的否则在common公共模块中无启动类导致最终的打包失败,解决方式就是把子maven的以下部分就可以了
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>