-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.xml
74 lines (64 loc) · 2.16 KB
/
build.xml
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<project name="tabulator" basedir=".">
<property name="lib.dir" value="lib" />
<property name="src.dir" value="src" />
<property name="test.dir" value="src/org/terrapop/tabulation/test" />
<property name="Resource.dir" value="Resource" />
<property name="build.dir" value="build" />
<property name="classes.dir" value="${build.dir}/classes" />
<property name="jar.dir" value="${build.dir}/jar" />
<property name="main-class" value="org.terrapop.tabulation.reader.Reader" />
<property name="report.dir" value="${build.dir}/junitreport" />
<path id="application" location="${jar.dir}/${ant.project.name}.jar" />
<path id="classpath">
<fileset dir="${lib.dir}" includes="**/*.jar" />
</path>
<target name="clean">
<delete dir="build" />
</target>
<target name="compile">
<mkdir dir="build/classes" />
<javac srcdir="src" destdir="build/classes" classpathref="classpath" />
<copy todir="${classes.dir}">
<fileset dir="${Resource.dir}" excludes="**/*.java" />
</copy>
<copy todir="${classes.dir}">
<fileset dir="${lib.dir}" excludes="**/*.java" />
</copy>
</target>
<target name="jar">
<mkdir dir="build/jar" />
<jar destfile="build/jar/tabulator.jar" basedir="build/classes">
<manifest>
<attribute name="Main-Class" value="${main-class}" />
</manifest>
</jar>
</target>
<target name="run" depends="jar">
<java fork="true" classname="${main-class}">
<classpath>
<path refid="classpath" />
<path refid="application" />
<path location="${jar.dir}/${ant.project.name}.jar" />
</classpath>
</java>
</target>
<target name="junit" depends="jar">
<mkdir dir="${report.dir}" />
<junit printsummary="yes">
<classpath>
<path refid="classpath" />
<path refid="application" />
</classpath>
<formatter type="xml" />
<formatter type="plain" usefile="false" />
<formatter type="plain" /> <!-- to file -->
<test name="org.terrapop.tabulation.test.EndToEndTest" todir="${report.dir}" />
</junit>
</target>
<target name="junitreport">
<junitreport todir="${report.dir}">
<fileset dir="${report.dir}" includes="TEST-*.xml" />
<report todir="${report.dir}" />
</junitreport>
</target>
</project>