以下是我在 ant 构建文件中的 taskdef
<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 输出,但没有生成文件。请提供任何帮助。