-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
25 lines (20 loc) · 926 Bytes
/
build.xml
File metadata and controls
25 lines (20 loc) · 926 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
<?xml version="1.0"?>
<project name="algid" default="minify" basedir=".">
<!-- Include the property files -->
<property file="${basedir}/build/settings/user.properties"/>
<property file="${basedir}/build/settings/project.properties"/>
<property file="${basedir}/build/settings/version.properties"/>
<property file="${basedir}/build/settings/test.properties"/>
<!-- Include the master build file -->
<import file="${basedir}/build/master/master.xml"/>
<target name="minify" depends="prepare" description="Minify the CSS and JS files">
<echo message="Starting: CSS and JS minification"/>
<!-- Create a single, concatenated CSS file -->
<concat destfile="${build.style}${project.key}.css">
<fileset dir="${build.style}" includes="base.css" />
</concat>
<!-- Use the master minify -->
<antcall target="ef-ant.minify"/>
<echo message="Finished: CSS and JS minification"/>
</target>
</project>