-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathimhotep.xml
More file actions
25 lines (19 loc) · 728 Bytes
/
Copy pathimhotep.xml
File metadata and controls
25 lines (19 loc) · 728 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
<project name="imhotep report" default="report" basedir=".">
<property name="src.dir" location="src/test/java"/>
<property name="pyramid.dir" location="reports"/>
<property name="imhotep.jar.dir" location="lib"/>
<target name="init">
<tstamp/>
<mkdir dir="${pyramid.dir}"/>
</target>
<taskdef name="imhotep" classname="imhotep.ImhotepAntTask">
<classpath path="${imhotep.jar.dir}/imhotep-20140319.jar" />
</taskdef>
<target name="report" depends="init" >
<imhotep sourcedir="${src.dir}" destdir="${pyramid.dir}">
<level name="Unit"/>
<level name="Domain"/>
<level name="UI"/>
</imhotep>
</target>
</project>