gpt4 book ai didi

maven-2 - Maven 2 Checkstyle 配置位置

转载 作者:行者123 更新时间:2023-12-02 20:58:42 25 4
gpt4 key购买 nike

我有一个项目,它有一个 Maven 依赖项,其中包含一个 xml 文件,我在其中存储了 checkstyle 规则。我认为只使用这个配置就可以了:

<configLocation>mycheckstyle.xml</configLocation>

我的理解是应该在类路径上搜索该文件,并且我的 jar 文件是 Maven 依赖项,因此应该可以找到它,但是我得到了资源未找到异常。

有什么建议吗?

最佳答案

尝试将依赖项部分添加到您的插件配置中。

例如,

  <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<dependencies>
<dependency>
<groupId>com.example.whizbang</groupId>
<artifactId>build-tools</artifactId>
<version>1.0</version>
</dependency>
</dependencies>
</plugin>

参见Maven Checkstyle Plugin - Multimodule Configuration了解更多信息。

关于maven-2 - Maven 2 Checkstyle 配置位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/491026/

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