-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.xml
34 lines (28 loc) · 1.02 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
<?xml version="1.0"?>
<project name="CoreJS" basedir=".">
<property environment="env"/>
<property file="ant.properties"/>
<patternset id="fileset.resources">
<include name="**/*properties"/>
<include name="**/*html"/>
<include name="**/*css"/>
<include name="**/*js"/>
<include name="**/*gif"/>
<include name="**/*jpg"/>
<include name="**/*png"/>
<include name="**/*xml"/>
<include name="**/*stylesheet"/>
</patternset>
<!-- Minimize -->
<target name="minimize" depends="clean"
description="Removes all non-essential files, including Eclipse temporary/build output files">
<delete dir="${dir.temp}"/>
</target>
<!-- Clean -->
<target name="clean"
description="Clears all generated files, including build directories, distributables, and documentation">
<delete dir="${dir.build}"/>
<delete dir="${dir.dist}"/>
<delete dir="${dir.release}"/>
</target>
</project>