forked from wet-boew/wet-boew
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
32 lines (26 loc) · 840 Bytes
/
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
<?xml version="1.0" encoding="UTF-8"?>
<project name="wet-boew" default="default" basedir=".">
<description>Web Experience Toolkit</description>
<property name="src.dir" value="src"/>
<target name="default" depends="clean,build" description="Performs a clean and build when calling ant without any target"/>
<target name="build">
<subant target="build">
<fileset dir="${src.dir}" includes="**/build.xml"/>
</subant>
</target>
<target name="clean">
<subant target="clean">
<fileset dir="${src.dir}" includes="**/build.xml"/>
</subant>
</target>
<target name="test">
<subant target="test">
<fileset dir="${src.dir}" includes="**/**/build.xml"/>
</subant>
</target>
<target name="debug">
<subant target="debug">
<fileset dir="${src.dir}" includes="**/**/build.xml"/>
</subant>
</target>
</project>