搜了好久,有人提到需要spring-boot-maven-plugin
这个插件。
添加以后,有的可以了,有的不行。
最后发现是插件必须配置<skip>true</skip>
这个节点。
完整来说,就是在pom文件(或者父pom中),有这样一个配置:
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>