forked from atuttle/Mango-LogViewer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
29 lines (24 loc) · 867 Bytes
/
build.xml
File metadata and controls
29 lines (24 loc) · 867 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
29
<project name="LogViewer" default="publish-to-test" basedir=".">
<property name="dir.dev" value="${basedir}" />
<property name="dir.test" value="/Users/adam/Sites/localhost/MangoDev/components/plugins/user/LogViewer/" />
<!-- :::::::::::::::::::::::::::::::::::::::::::::::::::::::: -->
<!-- :::::::::::::::::::::::::::::::::::::::::::::::::::::::: -->
<target name="publish-to-test">
<copy todir="${dir.test}" verbose="true">
<fileset dir="${dir.dev}/LogViewer">
<include name="*.cfc" />
<include name="*.cfm" />
<include name="*.xml" />
<include name="icons/*.png" />
</fileset>
</copy>
</target>
<target name="make-zip">
<delete file="${dir.dev}/latest.zip" />
<zip
destfile="${dir.dev}/latest.zip"
basedir="${dir.dev}"
excludes="**/.DS_Store,build.xml,.git/**,.settings/**,.project"
/>
</target>
</project>