如果'checkstyle'检测到任何错误,我希望构建失败。 我提到了how to stop maven build using checkstyle和https://maven.apache.org/plugins/maven-checkstyle-plugin/usage.html。我的pom.xml看起来像这样:
<build>
<pluginManagement>
<plugins>
.....
.....
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.11</version>
<executions>
<execution>
<id>validate</id>
<goals>
<goal>check</goal>
</goals>
<phase>validate</phase>
<configuration>
<configLocation>config/sun_checks.xml</configLocation>
<encoding>UTF-8</encoding>
<consoleOutput>true</consoleOutput>
<failsOnError>true</failsOnError>
<linkXRef>false</linkXRef>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</pluginManagement>
</build>
运行checkstyle:check报告源中的错误。但运行安装成功。我已经尝试将插件绑定到验证,流程源和其他阶段。但是构建一直都是成功的。我错过了一些配置吗?
答案 0 :(得分:3)
在这种情况下,您不应该使用pluginManagement
。
pluginManagement
是一种控制父项中所有依赖项目的插件配置的方法。如果孩子(或项目本身)想要使用它,它应该将插件添加到构建/插件中:
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<!-- no version required -->
</plugin>
</plugins>
</build>