dlr 02/02/28 10:03:51
Modified: email build.xml
Log:
NestableException is not used by this package -- no reason to check
for it.
Revision Changes Path
1.3 +3 -17 jakarta-commons-sandbox/email/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-commons-sandbox/email/build.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -u -r1.2 -r1.3
--- build.xml 28 Feb 2002 18:01:30 -0000 1.2
+++ build.xml 28 Feb 2002 18:03:51 -0000 1.3
@@ -1,7 +1,7 @@
<project name="Jakarta Commons Email" default="jar" basedir=".">
<!--
- $Id: build.xml,v 1.2 2002/02/28 18:01:30 dlr Exp $
+ $Id: build.xml,v 1.3 2002/02/28 18:03:51 dlr Exp $
-->
<!-- ========== Initialize Properties =================================== -->
@@ -56,7 +56,6 @@
<path id="classpath">
<pathelement location="${javamail.jar}"/>
<pathelement location="${jaf.jar}"/>
- <pathelement location="${commons-lang.jar}"/>
<pathelement location="${commons-util.jar}"/>
</path>
@@ -86,12 +85,6 @@
<filter token="version" value="${component.version}"/>
<available
- classname="org.apache.commons.lang.exception.NestableException"
- property="commons-lang.present"
- classpathref="classpath"
- />
-
- <available
classname="org.apache.commons.util.GenerateUniqueId"
property="commons-util.present"
classpathref="classpath"
@@ -125,13 +118,6 @@
</antcall>
</target>
- <target name="check.commons-lang" unless="commons-lang.present">
- <antcall target="property-warning">
- <param name="name" value="commons-lang.jar"/>
- <param name="value" value="${commons-lang.jar}"/>
- </antcall>
- </target>
-
<target name="check.commons-util" unless="commons-util.present">
<antcall target="property-warning">
<param name="name" value="commons-util.jar"/>
@@ -139,8 +125,8 @@
</antcall>
</target>
- <target name="prepare" depends="init,check.commons-lang,check.commons-util,
- check.javamail,check.jaf"
+ <target name="prepare"
+ depends="init,check.commons-util,check.javamail,check.jaf"
description="Prepare build directory">
<mkdir dir="${build.home}"/>
<mkdir dir="${build.home}/classes"/>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>