ビルド ファイルに checkstyle を追加するのに問題があります。http://checkstyle.sourceforge.net/anttask.htmlのチュートリアルに従うだけでなく、checkstyles を使用するコードの例を見て、問題の解決策を見つけようとしています (たとえば、 ANT で Checkstyle からの出力がありません)。しかし、ファイルを構築するとき(端末コマンドant compile jar run)、checkstyleの行に沿って何も起こらないようです。パッケージを正しいディレクトリに挿入したと思います。これが私のビルドファイルコードの一部です:
<property name="checkstyle.dir" location="home/lakers/NoteTaker/analysis/bin/checkstyle-5.6" />
...
<target name="checkstyle">
<taskdef resource="checkstyletask.properties">
<classpath>
<pathelement location="home/lakers/NoteTaker/analysis/bin"/>
<pathelement location ="home/lakers/NoteTaker/analysis/bin/checkstyle-5.6/checkstyle-5.6-all.jar"/>
</classpath>
</taskdef>
<echo>Starting checkstyle</echo>
<checkstyle config="sun_checks.xml" failOnViolation="false">
<fileset dir="src" includes="**/*.java"/>
<fileset dir="NoteTaker/NoteTaker/src/notetaker" includes="**/*.java"/>
<formatter type="plain"/>
</checkstyle>
<echo>Checkstyle finished</echo>
</target>
私が言ったことが不明確な場合は、お知らせください。明確にするよう努めます。よろしくお願いいたします。:)