-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
67 lines (58 loc) · 2.33 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
<?xml version="1.0" encoding="UTF-8"?>
<project basedir="." default="install" name="roma">
<macrodef name="iterate">
<attribute name="target"/>
<sequential>
<echo> _______</echo>
<echo> |_ __ \</echo>
<echo> | |__) | .--. _ .--..--. ,--.</echo>
<echo> | __ / / .'`\ \[ `.-. .-. | `'_\ :</echo>
<echo> _| | \ \_| \__. | | | | | | | // | |,</echo>
<echo> |____| |___|'.__.' [___||__||__]\'-;__/</echo>
<echo></echo>
<echo> ________ __</echo>
<echo>|_ __ | [ | _</echo>
<echo> | |_ \_|_ .--. ,--. _ .--..--. .---. _ _ __ .--. _ .--. | | / ]</echo>
<echo> | _| [ `/'`\]`'_\ : [ `.-. .-. |/ /__\\[ \ [ \ [ ]/ .'`\ \[ `/'`\]| '' |</echo>
<echo> _| |_ | | // | |, | | | | | || \__., \ \/\ \/ / | \__. | | | | |`\ \</echo>
<echo>|_____| [___] \'-;__/[___||__||__]'.__.' \__/\__/ '.__.' [___] [__| \_]</echo>
<subant target="@{target}">
<fileset dir="core" includes="build.xml" />
</subant>
<subant target="@{target}">
<fileset dir="frontend" includes="build.xml" />
</subant>
<subant target="@{target}">
<fileset dir="." includes="*/build.xml" excludes="core/build.xml frontend/build.xml demo/build.xml"/>
</subant>
</sequential>
</macrodef>
<target name="clean">
<iterate target="clean"/>
</target>
<target name="clean-all">
<iterate target="clean-all"/>
</target>
<target name="publish">
<iterate target="publish"/>
</target>
<target name="compile">
<iterate target="publish"/>
</target>
<target name="javadoc">
<iterate target="javadoc"/>
</target>
<target name="install">
<iterate target="clean-all"/>
<iterate target="publish"/>
<echo></echo>
<echo></echo>
<echo> ___ ___ ____ _ </echo>
<echo> .' `.|_ ||_ _| | | </echo>
<echo>/ .-. \ | |_/ / | | </echo>
<echo>| | | | | __'. |_| </echo>
<echo>\ `-' /_| | \ \_ _ </echo>
<echo> `.___.'|____||____| (_) </echo>
<echo></echo>
</target>
</project>