gpt4 book ai didi

Java 谷歌 checkstyle Maven

转载 作者:搜寻专家 更新时间:2023-10-30 21:01:52 27 4
gpt4 key购买 nike

我正在尝试将我的 Maven 项目配置为使用具有以下配置的 google java 检查样式:

google_checks.xml:https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml

pom.xml

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.17</version>
<executions>
<execution>
<id>checkstyle</id>
<phase>validate</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
<configuration>
<configLocation>google_checks.xml</configLocation>
<encoding>UTF-8</encoding>
<consoleOutput>true</consoleOutput>
<failsOnError>true</failsOnError>
</configuration>
</plugin>
</plugins>
</build>

<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<version>2.5</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.17</version>
<configuration>
<configLocation>google_checks.xml</configLocation>
<failOnViolation>false</failOnViolation>
<enableFilesSummary>false</enableFilesSummary>
</configuration>
</plugin>
</plugins>
</reporting>

一开始它似乎可以正常运行 mvn checkstyle:check。但经过几次运行后,我开始收到以下错误:

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-checkstyle-plugin:2.17:check 
(default-cli) on project PROJECT: Failed during checkstyle configuration: cannot initialize
module TreeWalker - Token "METHOD_REF" was not found in Acceptable tokens list in check
com.puppycrawl.tools.checkstyle.checks.whitespace.SeparatorWrapCheck -> [Help 1]

这是什么意思?为什么它只发生几次,我该如何摆脱它?

最佳答案

Token "METHOD_REF" was not found in Acceptable tokens list in check com.puppycrawl.tools.checkstyle.checks.whitespace.SeparatorWrapCheck

您正在尝试将较新的配置与旧版本的 Checkstyle 一起使用。

https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml 处的配置位于 master 中,它依赖于 checkstyle 的快照版本。

如果您使用的是未经任何修改的 google 配置,则需要使用嵌入在 checkstyle 中的配置。参见 https://stackoverflow.com/a/35486365/1016482

否则,您可以集成更新版本的 checkstyle 以与 maven 一起使用。参见 https://stackoverflow.com/a/27359107/1016482

关于Java 谷歌 checkstyle Maven,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43971450/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com