-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
32 lines (26 loc) · 799 Bytes
/
build.xml
File metadata and controls
32 lines (26 loc) · 799 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?xml version="1.0" encoding="UTF-8"?>
<project name="emma">
<path id="emma.lib">
<pathelement location="${emma.dir}/lib/emma-2.0.5312.jar" />
<pathelement location="${emma.dir}/lib/emma_ant-2.0.5312.jar" />
</path>
<taskdef resource="emma_ant.properties" classpathref="emma.lib" />
<path id="run.classpath">
<pathelement location="${build.classpath}" />
</path>
<target name="instr">
<emma enabled="true">
<instr instrpathref="run.classpath" metadatafile="${emma.dir}/work/coverage.em" mode="overwrite" />
</emma>
</target>
<target name="report">
<emma enabled="true">
<report>
<fileset dir="${emma.dir}">
<include name="work/coverage.*" />
</fileset>
<html outfile="${emma.dir}/report/coverage.html" />
</report>
</emma>
</target>
</project>