2

我目前正在尝试创建一个基于 Google 样式表的 checkstyle 样式表,但有一些小的调整(新的行长和缩进长度。我从 Github 上抓取了这个文件(https://github.com/checkstyle/checkstyle /blob/master/src/main/resources/google_checks.xml),但是当我运行它时出现以下错误:

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-checkstyle-plugin:3.1.1:check (default-cli) on project some-api: Execution default-cli of goal org.apache.maven.plugins:maven-checkstyle-plugin:3.1.1:check failed: given name COMPACT_CTOR_DEF -> [Help 1]

Maven插件配置:

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-checkstyle-plugin</artifactId>
        <version>${checkstyle-maven-plugin.version}</version>
        <configuration>
          <consoleOutput>true</consoleOutput>
          <configLocation>google_checks1.xml</configLocation>
        </configuration>
        <executions>
          <execution>
            <goals>
              <goal>check</goal>
            </goals>
          </execution>
        </executions>
      </plugin>

我需要包含一些依赖项吗?有没有更好的方法来实现我的目标?对于任何反馈,我们都表示感谢。

4

1 回答 1

3

上面的评论提供了解决此问题的方法。需要包含依赖项来指定 maven 插件的 checkstyle 版本。

以下对我有用,从复制的谷歌检查中修复了 COMPACT_CTOR_DEF 错误

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-checkstyle-plugin</artifactId>
    <version>3.1.1</version>
    <dependencies>
        <dependency>
            <groupId>com.puppycrawl.tools</groupId>
            <artifactId>checkstyle</artifactId>
            <version>8.36</version>
        </dependency>
    </dependencies>

    <configuration>
        <configLocation>my_checks.xml</configLocation>
    </configuration>
</plugin>
于 2020-11-05T09:27:46.970 回答