使用自定义Checkstyle运行Maven Checkstyle

时间:2012-10-10 16:16:17

标签: maven checkstyle

我运行mvn checkstyle:checkstyle,但它没有使用我的自定义checkstyle XML文件。

请告诉我如何使用我自己的checkstyle文件而不是默认/其中配置的文件?

2 个答案:

答案 0 :(得分:6)

对于最新版本的CheckStyle,现在已经更改了,您需要使用属性声明文件位置:

<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">
  ...

  <properties>
    <checkstyle.config.location><!-- Specify file here --></checkstyle.config.location>
  </properties>

  <build>
    ...

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-checkstyle-plugin</artifactId>
        <version>2.9.1</version>
      </plugin>
    </plugins>
  </build>

</project>

从我的如何编写自定义checkstyle检查的示例中获取:

http://blog.blundellapps.co.uk/create-your-own-checkstyle-check/

和源代码:

https://github.com/blundell/CreateYourOwnCheckStyleCheck

答案 1 :(得分:4)

您需要在pom.xml中配置文件位置:

<build>
  <plugins>
    <plugin>
      <groupId>org.apache.maven.plugins</groupId>
      <artifactId>maven-checkstyle-plugin</artifactId>
      <version>2.9.1</version>  
      <configuration>
        <configLocation><!-- Specify file here --></configLocation>
      </configuration>
    </plugin>  
  </plugins>
</build>

检查this page以查看其他配置选项。