getdown needed some tweaking.

This commit is contained in:
Jonathan Le Plastrier
2006-10-12 19:18:12 +00:00
parent 27f7bdb390
commit 64c44bdc7c
4 changed files with 5 additions and 2 deletions
+5 -2
View File
@@ -20,8 +20,8 @@
<!-- declare our classpath --> <!-- declare our classpath -->
<path id="clazzpath"> <path id="clazzpath">
<fileset dir="lib" includes="**/*.jar"/>
<pathelement location="${deploy.dir}/classes"/> <pathelement location="${deploy.dir}/classes"/>
<fileset dir="${deploy.dir}/lib" includes="*.jar"/>
</path> </path>
<!-- checks the availability of certain libraries --> <!-- checks the availability of certain libraries -->
@@ -36,7 +36,7 @@
<!-- prepares the application directories --> <!-- prepares the application directories -->
<target name="prepare" depends="check-available"> <target name="prepare" depends="check-available">
<mkdir dir="${deploy.dir}"/> <mkdir dir="${deploy.dir}/lib"/>
<mkdir dir="${deploy.dir}/classes"/> <mkdir dir="${deploy.dir}/classes"/>
<mkdir dir="${javadoc.dir}"/> <mkdir dir="${javadoc.dir}"/>
<!-- copy media and properties into the target directory --> <!-- copy media and properties into the target directory -->
@@ -45,6 +45,9 @@
<fileset dir="${src.dir}" includes="**/*.png"/> <fileset dir="${src.dir}" includes="**/*.png"/>
<fileset dir="${src.dir}" includes="**/*.properties"/> <fileset dir="${src.dir}" includes="**/*.properties"/>
</copy> </copy>
<copy todir="${deploy.dir}/lib">
<fileset dir="lib" includes="**/*.jar"/>
</copy>
</target> </target>
<!-- cleans out the built application --> <!-- cleans out the built application -->
BIN
View File
Binary file not shown.
Binary file not shown.
Binary file not shown.