Maven项目中的Checkstyle。如果发生违规行为,项目不能失败

时间:2015-09-08 15:18:13

标签: java eclipse maven checkstyle

我遇到了针对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 有这些要求:

  • 需要执行Maven项目。
  • 需要在范围内对工件进行依赖性解析:test。
  • 目标是线程安全的,并支持并行构建。
  • 默认情况下绑定到生命周期阶段:验证。

我哪里出错了。也许我以错误的方式写了 pom.xml 。请帮我解决这个问题。

1 个答案:

答案 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