1
我想通過將checkstyle添加到我的目標來改進我的build.xml
文件。netbeans中的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">
我錯過了什麼?