changed from jakarta-regexp to jakarta-ORO
authormaxcooper <maxcooper>
Tue, 17 Dec 2002 15:11:26 +0000 (15:11 +0000)
committermaxcooper <maxcooper>
Tue, 17 Dec 2002 15:11:26 +0000 (15:11 +0000)
version number update

build-webapp.xml
build.properties.sample
build.xml

index 2ddb103..d5cfd72 100644 (file)
   <mkdir   dir="${webapp.target}/WEB-INF/lib"/>
   <copy  todir="${webapp.target}/WEB-INF/lib">
     <fileset dir="${securityfilter.libs}" includes="commons-*.jar"/>
-    <fileset dir="${securityfilter.libs}" includes="jakarta-regexp.jar"/>
+    <fileset dir="${securityfilter.libs}" includes="jakarta-oro.jar"/>
     <fileset dir="${securityfilter.libs}" includes="securityfilter.jar"/>
   </copy>
 </target>
index 068fe98..56a6bb7 100644 (file)
@@ -6,7 +6,7 @@
 # rename this file to "build.properties" in the same directory that contains 
 # the Security Filter "build.xml" file.
 #
-# $Id: build.properties.sample,v 1.1 2002/08/08 13:20:46 maxcooper Exp $
+# $Id: build.properties.sample,v 1.2 2002/12/17 15:11:26 maxcooper Exp $
 # -----------------------------------------------------------------------------
 
 # The catalina JAR file from version 4.0 (or later) of the Jakarta Tomcat 
@@ -29,9 +29,9 @@ commons-digester.jar=/usr/local/commons-digester-1.0/commons-digester.jar
 # from the Jakarta Commons project.
 commons-logging.jar=/usr/local/commons-logging-1.0/commons-logging.jar
 
-# The JAR file containing version 1.2 (or later) of 
-# the the Jakarta Regexp project.
-jakarta-regexp.jar=/usr/local/jakarta-regexp-1.2/jakarta-regexp-1.2.jar
+# The JAR file containing version 2.0.6 (or later) of
+# the the Jakarta ORO project.
+jakarta-oro.jar=/usr/local/jakarta-oro-2.0.6/jakarta-oro-2.0.6.jar
 
 # The JAR file containing the Servlet API version 2.3 (or later) classes to 
 # compile against
index b98fc65..eab0297 100644 (file)
--- a/build.xml
+++ b/build.xml
@@ -39,9 +39,9 @@
                                       of the Jakarta Commons Logging
                                       package (version 1.0 or later).
 
-        jakarta-regexp.jar            (required).  The path to the JAR file
-                                      of the Jakarta Regexp
-                                      package (version 1.2 or later).
+        jakarta-oro.jar               (required).  The path to the JAR file
+                                      of the Jakarta ORO
+                                      package (version 2.0.6 or later).
 
         servlet.jar                   (required).  The path to the Servlet API
                                       classes to compile against
@@ -83,7 +83,7 @@
     <property name="project.name" value="securityfilter"/>
 
     <!-- Version of the project -->
-    <property name="project.version" value="1.0-b4"/>
+    <property name="project.version" value="1.0-b5-dev"/>
 
 
 <!-- ========== Derived Properties ======================================== -->
       <pathelement location="${commons-collections.jar}"/>
       <pathelement location="${commons-digester.jar}"/>
       <pathelement location="${commons-logging.jar}"/>
-      <pathelement location="${jakarta-regexp.jar}"/>
+      <pathelement location="${jakarta-oro.jar}"/>
       <pathelement location="${servlet.jar}"/>
     </path>
 
             tofile="${build.home}/library/commons-digester.jar"/>
         <copy file="${commons-logging.jar}"
             tofile="${build.home}/library/commons-logging.jar"/>
-        <copy file="${jakarta-regexp.jar}"
-            tofile="${build.home}/library/jakarta-regexp.jar"/>
+        <copy file="${jakarta-oro.jar}"
+            tofile="${build.home}/library/jakarta-oro.jar"/>
     </target>
 
 <!--