-
Notifications
You must be signed in to change notification settings - Fork 25
/
build.xml
80 lines (67 loc) · 3.91 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
75
76
77
78
79
80
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project basedir="." default="build" name="AllProjects">
<description>
Builds sub-projects tracked by this repository. This is useful
since each of the build.xml file for each sub-projects depends
on other projects. This file wraps them all together and
resolves the necessary dependencies as it builds each
sub-project.
</description>
<!-- Include ant xml file with shared utils. -->
<include file="ant-util.xml" as="util" />
<property environment="env"/>
<!--=====================================================================-->
<target name="clean">
<ant inheritAll="false" antfile="./daikonizer/build.xml" target="clean"/>
<ant inheritAll="false" antfile="./synoptic/build.xml" target="clean"/>
<ant inheritAll="false" antfile="./csight/build.xml" target="clean"/>
<ant inheritAll="false" antfile="./InvariMint/build.xml" target="clean"/>
<ant inheritAll="false" antfile="./synopticgwt/build.xml" target="clean"/>
<ant inheritAll="false" antfile="./synopticjung/build.xml" target="clean"/>
</target>
<!--=====================================================================-->
<target name="build" depends="synoptic, csight, invarimint, synopticjung">
<echo message="Built all projects in the repository." />
</target>
<!--=====================================================================-->
<target name="daikonizer">
<ant inheritAll="false" antfile="./daikonizer/build.xml" target="clean"/>
<ant inheritAll="false" antfile="./daikonizer/build.xml" target="build"/>
<ant inheritAll="false" antfile="./daikonizer/build.xml" target="jar"/>
</target>
<!--=====================================================================-->
<target name="synoptic" depends="daikonizer">
<ant inheritAll="false" antfile="./synoptic/build.xml" target="clean"/>
<ant inheritAll="false" antfile="./synoptic/build.xml" target="build"/>
<ant inheritAll="false" antfile="./synoptic/build.xml" target="jar"/>
</target>
<!--=====================================================================-->
<target name="perfume" depends="daikonizer">
<ant inheritAll="false" antfile="./synoptic/build.xml" target="clean"/>
<ant inheritAll="false" antfile="./synoptic/build.xml" target="build"/>
<ant inheritAll="false" antfile="./synoptic/build.xml" target="jar-perfume"/>
</target>
<!--=====================================================================-->
<target name="csight" depends="synoptic">
<ant inheritAll="false" antfile="./csight/build.xml" target="clean"/>
<ant inheritAll="false" antfile="./csight/build.xml" target="build"/>
<ant inheritAll="false" antfile="./csight/build.xml" target="jar"/>
</target>
<!--=====================================================================-->
<target name="invarimint" depends="synoptic">
<ant inheritAll="false" antfile="./InvariMint/build.xml" target="clean"/>
<ant inheritAll="false" antfile="./InvariMint/build.xml" target="build"/>
<ant inheritAll="false" antfile="./InvariMint/build.xml" target="jar"/>
</target>
<!--=====================================================================-->
<target name="synopticgwt" depends="synoptic">
<ant inheritAll="false" antfile="./synopticgwt/build.xml" target="clean"/>
<ant inheritAll="false" antfile="./synopticgwt/build.xml" target="build"/>
</target>
<!--=====================================================================-->
<target name="synopticjung" depends="synoptic">
<ant inheritAll="false" antfile="./synopticjung/build.xml" target="clean"/>
<ant inheritAll="false" antfile="./synopticjung/build.xml" target="build"/>
<ant inheritAll="false" antfile="./synopticjung/build.xml" target="jar"/>
</target>
</project>