gpt4 book ai didi

java - 用于自动格式化代码以匹配 google checkstyle 的 Maven 插件?

转载 作者:行者123 更新时间:2023-11-29 08:29:11 30 4
gpt4 key购买 nike

我在 Intellij 中使用 google checkstyle:https://github.com/google/styleguide

当我在 IntelliJ 中进行任何编码期间进行格式化时,我都会运行此 eclipse checkstyle,它似乎工作正常。我想要一个 Maven 阶段,在我运行 mvn clean install 时格式化代码。

我正在使用以下插件:

<plugin>
<groupId>net.revelc.code.formatter</groupId>
<artifactId>formatter-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>format</goal>
</goals>
<configuration>
<configFile>src/main/resources/eclipse-java-google-style.xml</configFile>
<encoding>UTF-8</encoding>
</configuration>
</execution>
</executions>
</plugin>

不幸的是,它似乎没有正确注册该配置文件。我想知道获取正确的 checkstyle 配置的最佳经验法则是什么。我将它放在哪里以及如何在我的 POM 中表示它?

最佳答案

根据 formatter-maven-plugin文档的示例“使用外部资源的基本配置”,您必须删除 :

中的“src/main/resources/”
<plugin>
<groupId>net.revelc.code.formatter</groupId>
<artifactId>formatter-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>format</goal>
</goals>
<configuration>
<configFile>eclipse-java-google-style.xml</configFile>
<encoding>UTF-8</encoding>
</configuration>
</execution>
</executions>
</plugin>

关于java - 用于自动格式化代码以匹配 google checkstyle 的 Maven 插件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49712148/

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