Checkstyle: cannot summarise issues per author ?
Posted
by David Michel
on Stack Overflow
See other posts from Stack Overflow
or by David Michel
Published on 2010-02-16T10:49:52Z
Indexed on
2010/03/09
7:36 UTC
Read the original article
Hit count: 434
java
|checkstyle
Hi all,
I'm trying to use checkstyle for a java project but I can't seem to get it working properly:
While it apparently runs smoothly, the html report doesn't give any info per authors as it should, i.e. the authors table is empty.
The thing is I don't know how checkstyle identify an author. Does it look at the java doc tag @author ? at the class level or at the method level ?
The ant task I used is below:
<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>
Many thanks for your help
David
© Stack Overflow or respective owner