搜了好久,有人提到需要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>