我目前正在尝试创建一个基于 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>
我需要包含一些依赖项吗?有没有更好的方法来实现我的目标?对于任何反馈,我们都表示感谢。