如何配置checkstyle(在Ant nt Maven中)任务?我试了一下,但我没有得到正确的报告。这是我的ant脚本。
<target name="checkStyle">
<taskdef resource="checkstyletask.properties">
<classpath refid="compile.class.pathtest"/>
</taskdef>
<checkstyle config="${source.code.dir}/config/sun_checks.xml">
<fileset dir="${base.working.dir}/JavaFolder">
<include name="**/*.java"/>
</fileset>
<formatter type="plain"/>
<formatter type="xml" toFile="checkstyle-result.xml"/>
</checkstyle>
</target>
<path id="compile.class.pathtest">
<pathelement location="${checkstyle.dir}/checkstyle-5.5-all.jar"/>
<pathelement location="${checkstyle.dir}/checkstyle-5.5.jar"/>
<pathelement location="${checkstyle.dir}/pmd-3.9.jar"/>
<pathelement location="${checkstyle.dir}/asm-3.0.jar"/>
<pathelement location="${checkstyle.dir}/backport-util-concurrent-2.1.jar"/>
<pathelement location="${checkstyle.dir}/jaxen-1.1-beta-10.jar"/>
<pathelement location="${checkstyle.dir}/saxpath-1.0-FCS.jar"/>
</path>
sun_checks.xml文件是什么?我已经下载并保存在上述文件夹中。在运行构建时,它会显示一些警告和错误。之后,它显示如下:
构建失败
C:serverbuild.xml:9725:执行这一行时发生以下错误:C:serverbuild.xml:3838:得到56个错误和27599个警告。
你能指导我如何解决这个问题吗?
谢谢
sun_checks.xml
文件包含checkstyle配置,即在评估源代码时应该应用的所有规则。
构建失败,因为checkstyle发现错误。
可以将failOnViolation属性设置为false来避免这种情况。未设置时,此属性默认为true。
<checkstyle config="${source.code.dir}/config/sun_checks.xml" failOnViolation="false">
<fileset dir="${base.working.dir}/JavaFolder">
<include name="**/*.java"/>
</fileset>
<formatter type="plain"/>
<formatter type="xml" toFile="checkstyle-result.xml"/>
</checkstyle>