Introduced a dependency on the Jakarta Commons IO library to the JDBC package.

git-svn-id: https://samskivert.googlecode.com/svn/trunk@1789 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
mdb
2006-02-20 21:58:37 +00:00
parent d280925985
commit 95f9f9405b
2 changed files with 10 additions and 3 deletions
+9 -3
View File
@@ -54,10 +54,10 @@
<echo message="----------------------------------------------"/> <echo message="----------------------------------------------"/>
<echo message="Jakarta libraries - http://jakarta.apache.org/"/> <echo message="Jakarta libraries - http://jakarta.apache.org/"/>
<echo message="----------------------------------------------"/> <echo message="----------------------------------------------"/>
<available property="jakarta.commons-collections.present" <available property="jakarta.commons-colls.present"
classname="org.apache.commons.collections.CollectionUtils" classname="org.apache.commons.collections.CollectionUtils"
classpathref="classpath"/> classpathref="classpath"/>
<echo message="Commons Collections: ${jakarta.commons-collections.present}"/> <echo message="Commons Collections: ${jakarta.commons-colls.present}"/>
<available property="jakarta.commons-logging.present" <available property="jakarta.commons-logging.present"
classname="org.apache.commons.logging.Log" classname="org.apache.commons.logging.Log"
@@ -69,6 +69,11 @@
classpathref="classpath"/> classpathref="classpath"/>
<echo message="Commons Digester: ${jakarta.commons-digester.present}"/> <echo message="Commons Digester: ${jakarta.commons-digester.present}"/>
<available property="jakarta.commons-io.present"
classname="org.apache.commons.io.IOUtils"
classpathref="classpath"/>
<echo message="Commons Io: ${jakarta.commons-io.present}"/>
<available property="jakarta.velocity.present" <available property="jakarta.velocity.present"
classname="org.apache.velocity.Template" classpathref="classpath"/> classname="org.apache.velocity.Template" classpathref="classpath"/>
<echo message="Velocity: ${jakarta.velocity.present}"/> <echo message="Velocity: ${jakarta.velocity.present}"/>
@@ -93,6 +98,7 @@
<and> <and>
<isset property="build.io"/> <isset property="build.io"/>
<isset property="build.util"/> <isset property="build.util"/>
<isset property="jakarta.commons-io.present"/>
</and> </and>
</condition> </condition>
<!--<echo message="com.samskivert.jdbc: ${build.jdbc}"/>--> <!--<echo message="com.samskivert.jdbc: ${build.jdbc}"/>-->
@@ -127,7 +133,7 @@
<and> <and>
<isset property="build.servlet"/> <isset property="build.servlet"/>
<isset property="build.util"/> <isset property="build.util"/>
<isset property="jakarta.commons-collections.present"/> <isset property="jakarta.commons-colls.present"/>
<isset property="jakarta.velocity.present"/> <isset property="jakarta.velocity.present"/>
<isset property="servlet2.3.present"/> <isset property="servlet2.3.present"/>
</and> </and>
+1
View File
@@ -1,6 +1,7 @@
commons-collections.jar commons-collections.jar
commons-digester.jar commons-digester.jar
commons-logging.jar commons-logging.jar
commons-io.jar
mail.jar mail.jar
servlet-2.3.jar servlet-2.3.jar
velocity-1.5-dev.jar velocity-1.5-dev.jar