我遇到了针对java的Checkstyle插件的问题。如果发生任何违规行为,我需要在整个多模块项目中失败。在父 pom.xml 中,我有以下内容
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.ss.ita</groupId>
<artifactId>jresume</artifactId>
<version>1.0</version>
<packaging>pom</packaging>
<name>JResume</name>
<modules>
<module>common</module>
<module>persistence</module>
<module>business</module>
<module>logging</module>
<module>web</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.16</version>
<executions>
<execution>
<id>validate</id>
<phase>validate</phase>
<configuration>
<configLocation>dev/checkstyle.xml</configLocation>
<encoding>UTF-8</encoding>
<consoleOutput>true</consoleOutput>
<failsOnError>true</failsOnError>
<failOnViolation>true</failOnViolation>
</configuration>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
我的 checkstyle.xml 位于 dev 文件夹中。
当我用
运行我的项目时mvn clean install
它打印所有违规的列表。但它不能让整个项目失败。它为所有模块打印SUCCESS。 我尝试使用 failedOnError 和 failOnViolation 。但它没有用。In plugin documentation 有这些要求:
我哪里出错了。也许我以错误的方式写了 pom.xml 。请帮我解决这个问题。
答案 0 :(得分:6)
可能你忘了
<configuration>
...
<violationSeverity>warning</violationSeverity>
...
</configuration>
violationSeverity
:被视为违规的最低严重性级别。有效值为&#34;错误&#34;,&#34;警告&#34;和&#34;信息&#34;。
默认值为error
,这意味着warning
不会使maven构建失败。
请参阅:
http://maven.apache.org/plugins/maven-checkstyle-plugin/check-mojo.html#violationSeverity