Cobertura 在 Ant build.xml 中“无法定位文件”

Cobertura “unable to locate file” in Ant build.xml

此问题是此处问题的扩展,它询问如何使用命令行参数找到 Cobertura HTML 报告的源文件:Cobertura "unable to locate file" problem

给出的答案是使用以下命令:

cobertura-report.sh --format html --datafile $COBERTURA_HOME/core/emscore.ser 
--destination $REPORT_DIR $COBERTURA_HOME/core/src

我在 Spring 工具套件中使用 Ant build.xml 文件,而不是命令行。

谁能帮我把上面的答案翻译成 Ant 命令?

到目前为止,这是我的脚本:

<property name="src" location="${basedir}/src" />
<cobertura-report format="html" destdir="${cob.reports}">
   <fileset dir="${src}">
       <include name="**/*.java" />
   </fileset>
</cobertura-report>

这个Cobertura reference page表明Cobertura-Report Task提供的属性包括formatdatafiledestdirsrcdir。所以你应该能够使用那些重现该命令行,例如

<cobertura-report format="html" datafile="<path_to>/emscore.ser" destdir="${cob.reports}">
   <fileset dir="${src}">
       <include name="**/*.java" />
   </fileset>
</cobertura-report>