10

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

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

4

2 回答 2

7

您需要在以下配置文件位置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>

检查此页面以查看其他配置选项。

于 2012-10-10T17:10:25.100 回答
7

对于最新版本的 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>

取自我如何编写自定义检查样式检查的示例:

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

和这里的源代码:

https://github.com/blundell/CreateYourOwnCheckStyleCheck

于 2012-12-23T12:43:01.023 回答