雖然它看起來運行平穩,但是HTML報告並沒有給出每個作者的任何信息,因爲它應該是這樣的,即作者表是空的。Checkstyle:不能總結每個作者的問題?
事情是我不知道checkstyle如何識別作者。它看着java文檔標籤@author?在課堂上還是在方法層面?
我使用Ant任務是下面:
<taskdef resource="checkstyletask.properties" classpath="${libs.dir}/checkstyle-all-5.0.jar"/>
<target name="checkstyle" description="Generates a report of code convention violations.">
<mkdir dir="${checkstyle.dir}"/>
<checkstyle config="${util.dir}/checkstyle/sun_checks.xml" failureProperty="checkstyle.failure" failOnViolation="false">
<formatter type="xml" tofile="${checkstyle.dir}/checkstyle_report.xml"/>
<fileset dir="${src.dir}" includes="**/*.java"/>
</checkstyle>
<xslt in="${checkstyle.dir}/checkstyle_report.xml" out="${checkstyle.dir}/checkstyle_report.html" style="${util.dir}/checkstyle/checkstyle-author.xsl"/>
</target>
的幫助
大衛
以前真的沒有人遇到過這個問題嗎? – dm76 2010-02-26 17:17:59