-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.xml
18 lines (15 loc) · 807 Bytes
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" encoding="UTF-8"?>
<project default="all" basedir="." name="Lucee extension">
<import file="build-modern.xml"/>
<target name="info" description="outputs information about all posible building options">
<echo>You have the following building options, call:</echo>
<echo> "ant modern" to build a modern extension (Lucee GTE 5)</echo>
<echo> "ant all" (default) to build classic and modern extension</echo>
</target>
<target name="modern" depends="buildModern,clean" description="build build modern extension"></target>
<target name="all" depends="buildModern,clean" description="builds modern extension"></target>
<target name="clean" description="clean up" >
<delete dir="${temp}"/>
<delete dir="${dist}/extension2"/>
</target>
</project>