<target name="checkstyle" description="Generates a report of code convention violations." >
<taskdef name="checkstyle" classname="com.puppycrawl.tools.checkstyle.CheckStyleTask">
<classpath refid="lib"/>
</taskdef>
<delete dir="checkstyle/doc" quiet="true" />
<mkdir dir="checkstyle/doc" />
<checkstyle config="checkstyle/sun_checks.xml"
failureProperty="checkstyle.failure"
failOnViolation="false">
<formatter type="xml" tofile="checkstyle/error.xml"/>
<fileset dir="${src}" includes="**/*.java"/>
</checkstyle>
<xslt taskname="checkstyle"
in="checkstyle/error.xml"
out="checkstyle/report.html"
style="checkstyle/frames.xsl" />
</target>
发表于 @
2006年11月15日 15:04:00 | | 编辑|
举报| 收藏