gpt4 book ai didi

maven - 使用自定义 Checkstyle 运行 Maven Checkstyle

转载 作者:行者123 更新时间:2023-12-04 13:52:38 61 4
gpt4 key购买 nike

我跑了mvn checkstyle:checkstyle ,但它没有使用我的自定义 checkstyle XML 文件。

请告诉我如何使用我自己的 checkstyle 文件而不是默认/现在配置的文件?

最佳答案

您需要在 pom.xml 中配置文件位置:

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.9.1</version>
<configuration>
<configLocation><!-- Specify file here --></configLocation>
</configuration>
</plugin>
</plugins>
</build>

检查 this page查看其他配置选项。

关于maven - 使用自定义 Checkstyle 运行 Maven Checkstyle,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12823917/

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