Maven 检查样式作为构建的一部分
2022-09-01 23:02:57
如果存在一些错误,是否有可能以某种方式迫使maven使构建失败?现在我必须运行目标来生成和报告。我想让它达到目标,如果checkstyle有一些错误,我需要构建才能失败。这有可能实现吗?checkstyle
site
javadocs
checkstyle
install
现在我有我的报告块的maven:checkstyle
<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>