checkstyle
如果出现一些错误,是否有可能以某种方式强制 maven 使构建失败?现在我必须运行site
目标来生成javadocs
和checkstyle
报告。我想实现install
目标,如果 checkstyle 有一些错误,我需要构建失败。这有可能实现吗?
现在我有我checkstyle
的 Maven 报告块:
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.9.1</version>
<configuration>
<configLocation>src/test/resources/checkstyle.xml</configLocation>
</configuration>
</plugin>
</plugins>
</reporting>