-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.xml
47 lines (41 loc) · 1.32 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
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE project>
<project name="all" default="dist">
<fileset id="subdirs" dir="." includes="*/build.xml"/>
<target name="init">
<echo message="----- init in ${ant.project.name} -----"/>
<subant target="init">
<fileset refid="subdirs"/>
</subant>
</target>
<target name="compile">
<echo message="----- compile in ${ant.project.name} -----"/>
<subant target="compile">
<fileset refid="subdirs"/>
</subant>
</target>
<target name="test">
<echo message="----- test in ${ant.project.name} -----"/>
<subant target="test">
<fileset refid="subdirs"/>
</subant>
</target>
<target name="dist">
<echo message="----- dist in ${ant.project.name} -----"/>
<subant target="dist">
<fileset refid="subdirs"/>
</subant>
</target>
<target name="javadoc">
<echo message="----- javadoc in ${ant.project.name} -----"/>
<subant target="javadoc">
<fileset refid="subdirs"/>
</subant>
</target>
<target name="clean">
<echo message="----- clean in ${ant.project.name} -----"/>
<subant target="clean">
<fileset refid="subdirs"/>
</subant>
</target>
</project>