gpt4 book ai didi

java - netbeans 中的 checkstyle 插件,用于生成违反约定的 build.xml 目标规范

转载 作者:行者123 更新时间:2023-12-01 05:27:17 25 4
gpt4 key购买 nike

我想通过向我的目标添加 checkstyle 来改进我的 build.xml 文件。

我将 checkstyle-5.5-all.jar 添加到我的 lib 文件夹中。我还添加了一个包含 checkstyle_checks.xml 的 checkstyle 文件夹。

到目前为止我有这个:

<taskdef resource="${lib.dir}" classpathref="checkstyle.classpath"/>
<checkstyle config="checkstyle/checkstyle_checks.xml" classpath="${lib}/checkstyle-5.5-all.jar">
<formatter type="xml" tofile="${checkstyle}/checkstyle_error.xml"/>
<fileset dir="${src}" includes="${src}"/>
</checkstyle>

我收到此错误:

Could not load definitions from resource lib. It could not be found.

就是这一行:

<checkstyle config="checkstyle/checkstyle_checks.xml" classpath="${lib}/checkstyle-5.5-all.jar">

我错过了什么?

最佳答案

根据checkstyle documentation resource parameter必须是属性文件,而不是您的 lib 目录:

<taskdef resource="checkstyletask.properties"
classpathref="checkstyle.classpath"/>

关于java - netbeans 中的 checkstyle 插件,用于生成违反约定的 build.xml 目标规范,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9533577/

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