forked from kissyteam/kissy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
28 lines (21 loc) · 848 Bytes
/
build.xml
File metadata and controls
28 lines (21 loc) · 848 Bytes
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
<project name="validation.build" default="build" basedir=".">
<description>Validation Build File</description>
<property name="component.name" value="validation"/>
<property name="src.dir" location="./src/"/>
<import file="../../tools/common.xml"/>
<target name="concat">
<concat destfile="${component.src.dir.tmp}/validation-pkg.js"
encoding="${charset}"
outputencoding="${charset}">
<fileset dir="${src.dir}" includes="**/*.js"/>
<filterchain>
<deletecharacters chars=""/>
</filterchain>
</concat>
<copy todir="${component.src.dir.tmp}">
<fileset dir="." includes="assets/**/*"/>
</copy>
</target>
<target name="build" depends="concat,common.build">
</target>
</project>