以下は、antビルドファイルの私のタスク定義です
<target name="findbugs">
<echo message="${findbugs.home}"/>
<findbugs home="${findbugs.home}"
output="html"
outputFile="E:\reports\findbugs-report.html"
effort="max"
reportLevel="low" >
<sourcePath path="${basedir}/enterpriseapplication/**" />
<class location="${basedir}/**/*.class" />
</findbugs>
</target>
ディレクトリのファイル権限を確認しましたが、すべて問題ありません。cli 出力を取得しますが、ファイルが生成されません。助けてください。