Use new safer library locating process.

This commit is contained in:
Michael Bayne
2006-11-16 22:51:02 +00:00
parent 93ceaa40c4
commit 70b8797c4b
2 changed files with 12 additions and 16 deletions
+2 -6
View File
@@ -5,6 +5,8 @@
<property name="app.name" value="getdown"/>
<property name="src.dir" value="src/java"/>
<property name="deploy.dir" value="dist"/>
<property name="libs.dir" value="lib"/>
<import file="libs-incl.xml"/>
<!-- these are only used if we're going to sign things -->
<property file="build.properties"/>
@@ -18,12 +20,6 @@
<property name="copyright.holder" value="Three Rings Design, Inc."/>
<property name="copy.post" value="All Rights Reserved."/>
<!-- import some targets to enumerate library dependencies -->
<property name="projects.root" value="."/>
<property name="libs.dir" value="lib"/>
<property name="distlib.dir" value="lib"/>
<import file="libs-incl.xml"/>
<!-- declare our classpath -->
<path id="clazzpath">
<pathelement location="${deploy.dir}/classes"/>
+10 -10
View File
@@ -1,15 +1,15 @@
<?xml version="1.0"?>
<!-- declares the libraries needed to build getdown -->
<project name="library-dependencies">
<fileset dir="${projects.root}" id="getdown.libs">
<include name="${libs.dir}/ant.jar"/>
<include name="${libs.dir}/commons-codec.jar"/>
<include name="${libs.dir}/commons-io.jar"/>
<include name="${libs.dir}/proguard.jar"/>
<include name="${libs.dir}/retroweaver-all-1.2.2.jar"/>
<include name="${libs.dir}/retroweaver-rt-1.2.2.jar"/>
<include name="${distlib.dir}/snark.jar"/>
<include name="${distlib.dir}/samskivert.jar"/>
<include name="lib/javaws.jar"/>
<fileset dir="${libs.dir}" id="getdown.libs">
<include name="ant.jar"/>
<include name="commons-codec.jar"/>
<include name="commons-io.jar"/>
<include name="javaws.jar"/>
<include name="proguard.jar"/>
<include name="retroweaver-all-1.2.2.jar"/>
<include name="retroweaver-rt-1.2.2.jar"/>
<include name="samskivert.jar"/>
<include name="snark.jar"/>
</fileset>
</project>