dwinterfeldt    02/04/01 19:59:54

  Modified:    .        build-webapp.xml build.properties.sample build.xml
  Log:
  Switching from Jakarta Regexp to Jakarta ORO regular expression package.
  
  Revision  Changes    Path
  1.9       +1 -0      jakarta-struts/build-webapp.xml
  
  Index: build-webapp.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/build-webapp.xml,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- build-webapp.xml  22 Jan 2002 01:18:07 -0000      1.8
  +++ build-webapp.xml  2 Apr 2002 03:59:54 -0000       1.9
  @@ -269,6 +269,7 @@
     <mkdir   dir="${webapp.target}/WEB-INF/lib"/>
     <copy  todir="${webapp.target}/WEB-INF/lib">
       <fileset dir="${struts.libs}" includes="commons-*.jar"/>
  +    <fileset dir="${struts.libs}" includes="jakarta-oro.jar"/>
       <fileset dir="${struts.libs}" includes="struts.jar"/>
     </copy>
   </target>
  
  
  
  1.10      +4 -4      jakarta-struts/build.properties.sample
  
  Index: build.properties.sample
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/build.properties.sample,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- build.properties.sample   18 Mar 2002 01:44:51 -0000      1.9
  +++ build.properties.sample   2 Apr 2002 03:59:54 -0000       1.10
  @@ -6,7 +6,7 @@
   # to "build.properties" in the same directory that contains the Struts
   # "build.xml" file.
   #
  -# $Id: build.properties.sample,v 1.9 2002/03/18 01:44:51 dwinterfeldt Exp $
  +# $Id: build.properties.sample,v 1.10 2002/04/02 03:59:54 dwinterfeldt Exp $
   # -----------------------------------------------------------------------------
   
   # WARNING:  The relative paths below assume that the build.xml file is in the
  @@ -52,9 +52,9 @@
   # from the Jakarta Commons project.
   commons-validator.jar=/usr/local/commons-validator/commons-validator.jar
   
  -# The JAR file containing version 1.2 (or later) of the 
  -# Jakarta Regexp package.
  -regexp.jar=/usr/local/jakarta-regexp/jakarta-regexp-1.2.jar
  +# The JAR file containing version 2.06 (or later) of 
  +# the the Jakarta ORO project.
  +jakarta-oro.jar=/usr/local/jakarta-oro/jakarta-oro.jar
   
   # The JAR file containing the JDBC 2.0 Optional Package extensions API
   # (javax.sql).  This file will automatically be added to your class path
  
  
  
  1.67      +8 -1      jakarta-struts/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/build.xml,v
  retrieving revision 1.66
  retrieving revision 1.67
  diff -u -r1.66 -r1.67
  --- build.xml 18 Mar 2002 01:45:58 -0000      1.66
  +++ build.xml 2 Apr 2002 03:59:54 -0000       1.67
  @@ -56,6 +56,10 @@
                                         of the Jakarta Commons VALIDATOR
                                         package (version 1.0 or later).
   
  +        jakarta-oro.jar                    (required).  The path to the JAR file
  +                                      of the Jakarta ORO
  +                                      package (version 2.06 or later).
  +
           jdbc20ext.jar                 (required).  The path to the JAR file
                                         for the JDBC 2.0 Optional Package APIs.
   
  @@ -191,7 +195,7 @@
         <pathelement location="${commons-pool.jar}"/>
         <pathelement location="${commons-services.jar}"/>
         <pathelement location="${commons-validator.jar}"/>
  -      <pathelement location="${regexp.jar}"/>
  +      <pathelement location="${jakarta-oro.jar}"/>
         <pathelement location="${jdbc20ext.jar}"/>
         <pathelement location="${servlet.jar}"/>
         <pathelement location="${xerces.jar}"/>
  @@ -214,6 +218,7 @@
       <pathelement location="${commons-pool.jar}"/>
       <pathelement location="${commons-services.jar}"/>
       <pathelement location="${commons-validator.jar}"/>
  +    <pathelement location="${jakarta-oro.jar}"/>
       <pathelement location="${servlet.jar}"/>
       <pathelement location="${junit.jar}"/>
       <pathelement location="${jdbc20ext.jar}"/>
  @@ -275,6 +280,8 @@
               tofile="${build.home}/library/commons-services.jar"/>
           <copy file="${commons-validator.jar}"
               tofile="${build.home}/library/commons-validator.jar"/>
  +        <copy file="${jakarta-oro.jar}"
  +            tofile="${build.home}/library/jakarta-oro.jar"/>
           <copy file="${jdbc20ext.jar}"
               tofile="${build.home}/library/jdbc2_0-stdext.jar"/>
       </target>
  
  
  

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to