forked from wet-boew/wet-boew
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
37 lines (30 loc) · 1.13 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
<?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"/>
<property name="build.dir" value="build"/>
<target name="default" depends="clean,build,clean-css" description="Performs a clean and build when calling ant without any target"></target>
<target name="build" depends="">
<subant target="build">
<fileset dir="${src.dir}" includes="**/build.xml"/>
</subant>
</target>
<target name="clean-css">
<subant target="clean-css">
<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="preflight" description="Sets tabbing and encoding as indicated by the contributor guidelines">
<fixcrlf srcdir="${src.dir}" includes="**/*.js" encoding="UTF-8" outputencoding="UTF-8" tab="add" tablength="4" />
</target>
</project>