私は現在、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>
含める必要のある依存関係はありますか? 私の目標を達成するためのより良い方法はありますか?フィードバックをいただければ幸いです。