但没有对 emma_ant.properties 的内容提供任何参考。有任何想法吗?
检查您在指定路径中放置的emma.jar
&emma_ant.jar
您会发现emma_ant.properties
关于如何操作 emma_ant.properties 为 ANT 加载和自定义任务的任何想法?
您无需操作属性文件即可使用这些任务。
要使用 emma 任务,您应该
<!-- directory that contains emma.jar and emma_ant.jar -->
<property name="emma.dir" value="${YOUR_BASE_DIR}/lib/emma" />
<!-- Set emma.lib to refer to the list of EMMA jar files -->
<path id="emma.lib">
<fileset dir="${emma.dir}">
<include name="*.jar" />
</fileset>
</path>
和
<!-- Load <emma> custom tasks so that they can be used in ANT -->
<taskdef resource="emma_ant.properties" classpathref="emma.lib" />
你应该能够使用 emma 任务。
以下是emma_ant.properties
里面的内容emma.jar
# -------------------------------------------------------------
emma: com.vladium.emma.emmaTask
emmajava: com.vladium.emma.emmajavaTask
# -------------------------------------------------------------
# end of file
如果对您有帮助,还请查看Emma Property Summary ...