-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.xml
executable file
·36 lines (28 loc) · 1.1 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
<?xml version="1.0"?>
<project name="ga" default="all">
<target name="init">
<tstamp/>
<property name="project" value="${ant.project.name}" />
<property file="../standard_build.properties" />
<property file="build.properties" />
</target>
<target name="clean" depends="init">
<ant antfile="standard_build.xml" dir=".." target="clean" />
</target>
<target name="jar" depends="init">
<ant antfile="standard_build.xml" dir=".." target="prepare" />
<ant antfile="standard_build.xml" dir=".." target="compile" />
<ant antfile="standard_build.xml" dir=".." target="jar" />
</target>
<target name="test" depends="init,jar">
<ant antfile="standard_build.xml" dir=".." target="test" />
</target>
<target name="run" depends="init,jar">
<ant antfile="standard_build.xml" dir=".." target="run" />
</target>
<target name="dist" depends="init,jar">
<ant antfile="standard_build.xml" dir=".." target="javadoc" />
<ant antfile="standard_build.xml" dir=".." target="dist" />
</target>
<target name="all" depends="dist"/>
</project>