New safer library locating process.

git-svn-id: https://samskivert.googlecode.com/svn/trunk@1975 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
mdb
2006-11-16 22:52:38 +00:00
parent a619751966
commit 328bbeb644
2 changed files with 10 additions and 11 deletions
-1
View File
@@ -14,7 +14,6 @@
<property name="deploy.dir" value="dist"/> <property name="deploy.dir" value="dist"/>
<property name="javadoc.dir" value="${deploy.dir}/docs"/> <property name="javadoc.dir" value="${deploy.dir}/docs"/>
<property name="savedoc.dir" value="docs"/> <property name="savedoc.dir" value="docs"/>
<property name="projects.root" value="."/>
<property name="libs.dir" value="lib"/> <property name="libs.dir" value="lib"/>
<!-- declare our classpath business --> <!-- declare our classpath business -->
+10 -10
View File
@@ -1,15 +1,15 @@
<?xml version="1.0"?> <?xml version="1.0"?>
<!-- declares the libraries needed to build samskivert --> <!-- declares the libraries needed to build samskivert -->
<project name="library-dependencies"> <project name="library-dependencies">
<fileset dir="${projects.root}" id="samskivert.libs"> <fileset dir="${libs.dir}" id="samskivert.libs">
<include name="${libs.dir}/commons-collections.jar"/> <include name="commons-collections.jar"/>
<include name="${libs.dir}/commons-digester.jar"/> <include name="commons-digester.jar"/>
<include name="${libs.dir}/commons-io.jar"/> <include name="commons-io.jar"/>
<include name="${libs.dir}/commons-logging.jar"/> <include name="commons-logging.jar"/>
<include name="${libs.dir}/ejb3-persistence.jar"/> <include name="ejb3-persistence.jar"/>
<include name="${libs.dir}/junit-3.7.jar"/> <include name="junit-3.7.jar"/>
<include name="${libs.dir}/mail.jar"/> <include name="mail.jar"/>
<include name="${libs.dir}/servlet-2.3.jar"/> <include name="servlet-2.3.jar"/>
<include name="${libs.dir}/velocity-1.5-dev.jar"/> <include name="velocity-1.5-dev.jar"/>
</fileset> </fileset>
</project> </project>