I am running checkstyle
in an ANT task:
<taskdef resource="checkstyletask.properties" classpath="checkstyle-5.5//checkstyle-5.5-all.jar"/>
<checkstyle config="checkstyle-5.5/sun_checks.xml" failOnViolation="false">
<fileset dir="src/net" includes="**/*.java"/>
</checkstyle>
Anyways, the checkstyle
is certainly running; I'm seeing a trememndous amount of output at the console. However, I do not see a checkstyle-results.xml
file as output.
Of course, I'm assuming this is a severe error, and that checkstyle-results.xml
is ALWAYS produced when checkstyle runs, by default. Is that correct? I believe that the results.xml file is required by Jenkins or Hudson CI plugins as well.