forked from Leftbower/cfspreadsheet-lucee-5
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
27 lines (23 loc) · 1.09 KB
/
build.xml
File metadata and controls
27 lines (23 loc) · 1.09 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<project name="cfspreadsheet-lucee-5" default="all" basedir=".">
<property name="project-name" value="${ant.project.name}" />
<property name="archive-folder" value="extension/archives/" />
<property name="project-folder-to-zip" value="extension" />
<property name="lar-name" value="cfc-archive-cfspreadsheet" />
<property name="lar-folder-to-zip" value="lar" />
<!--<target name="all" depends="clean, zip-lar, zip-lex"/>-->
<target name="all" depends="clean, zip-lex"/>
<target name="clean">
<echo message="Cleaning existing .lar and .lex files..." />
<delete file="${project-name}.lex" />
<!--<delete file="${archive-folder}${lar-name}.lar" />-->
</target>
<!-- <target name="zip-lar">
<echo message="Package cfc and mapping into .lar and put in archives folder" />
<zip destfile="${archive-folder}${lar-name}.lar" basedir="${lar-folder-to-zip}" />
</target>-->
<target name="zip-lex">
<echo message="Package the project into master .lex file." />
<zip destfile="${project-name}.lex" basedir="${project-folder-to-zip}" />
</target>
</project>