You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@struts.apache.org by ma...@apache.org on 2002/12/22 02:25:33 UTC

cvs commit: jakarta-struts/doc/userGuide installation.xml release-notes.xml

martinc     2002/12/21 17:25:33

  Modified:    .        build-tests.xml build-webapp.xml build.xml
               contrib/struts-el build-tests.xml build-webapp.xml
               doc/userGuide installation.xml release-notes.xml
  Log:
  Remove dependence on Commons Services from the build process, and remove
  references to it as a requirement from the documentation.
  
  Revision  Changes    Path
  1.11      +0 -3      jakarta-struts/build-tests.xml
  
  Index: build-tests.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/build-tests.xml,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- build-tests.xml	7 Nov 2002 07:04:00 -0000	1.10
  +++ build-tests.xml	22 Dec 2002 01:25:32 -0000	1.11
  @@ -94,7 +94,6 @@
         <pathelement location="${commons-logging.jar}"/>
         <pathelement location="${commons-pool.jar}"/>
         <pathelement location="${commons-resources.jar}"/>
  -      <pathelement location="${commons-services.jar}"/>
         <pathelement location="${commons-validator.jar}"/>
         <pathelement location="${aspectjrt.jar}"/>
         <pathelement location="${cactus.jar}"/>
  @@ -184,8 +183,6 @@
           <copy file="${commons-logging.jar}"
                                         todir="${out.test.dir}/lib"/>
           <copy file="${commons-pool.jar}"
  -                                      todir="${out.test.dir}/lib"/>
  -        <copy file="${commons-services.jar}"
                                         todir="${out.test.dir}/lib"/>
           <copy file="${commons-validator.jar}"
                                         todir="${out.test.dir}/lib"/>
  
  
  
  1.12      +0 -5      jakarta-struts/build-webapp.xml
  
  Index: build-webapp.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/build-webapp.xml,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- build-webapp.xml	8 Aug 2002 05:01:22 -0000	1.11
  +++ build-webapp.xml	22 Dec 2002 01:25:32 -0000	1.12
  @@ -81,10 +81,6 @@
                                         of the Jakarta Commons Resources
                                         package (version 1.0 or later).
   
  -        commons-services.jar          (required).  The path to the JAR file
  -                                      of the Jakarta Commons SERVICES
  -                                      package (version 1.0 or later).
  -
           commons-validator.jar         (required).  The path to the JAR file
                                         of the Jakarta Commons VALIDATOR
                                         package (version 1.0 or later).
  @@ -192,7 +188,6 @@
     <pathelement location="${commons-logging.jar}"/>
     <pathelement location="${commons-pool.jar}"/>
     <pathelement location="${commons-resources.jar}"/>
  -  <pathelement location="${commons-services.jar}"/>
     <pathelement location="${commons-validator.jar}"/>
     <pathelement location="${jdbc20ext.jar}"/>
     <pathelement location="${servlet.jar}"/>
  
  
  
  1.86      +0 -7      jakarta-struts/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/build.xml,v
  retrieving revision 1.85
  retrieving revision 1.86
  diff -u -r1.85 -r1.86
  --- build.xml	7 Nov 2002 07:02:51 -0000	1.85
  +++ build.xml	22 Dec 2002 01:25:32 -0000	1.86
  @@ -104,10 +104,6 @@
                                         of the Jakarta Commons Resources
                                         package (version 1.0 or later).
   
  -        commons-services.jar          (required).  The path to the JAR file
  -                                      of the Jakarta Commons SERVICES
  -                                      package (version 1.0 or later).
  -
           commons-validator.jar         (required).  The path to the JAR file
                                         of the Jakarta Commons VALIDATOR
                                         package (version 1.0 or later).
  @@ -234,7 +230,6 @@
         <pathelement location="${commons-logging.jar}"/>
         <pathelement location="${commons-pool.jar}"/>
         <pathelement location="${commons-resources.jar}"/>
  -      <pathelement location="${commons-services.jar}"/>
         <pathelement location="${commons-validator.jar}"/>
         <pathelement location="${jakarta-oro.jar}"/>
         <pathelement location="${jdbc20ext.jar}"/>
  @@ -292,8 +287,6 @@
               tofile="${build.home}/library/commons-pool.jar"/>
           <copy file="${commons-resources.jar}"
               tofile="${build.home}/library/commons-resources.jar"/>
  -        <copy file="${commons-services.jar}"
  -            tofile="${build.home}/library/commons-services.jar"/>
           <copy file="${commons-validator.jar}"
               tofile="${build.home}/library/commons-validator.jar"/>
           <copy file="${jakarta-oro.jar}"
  
  
  
  1.2       +0 -3      jakarta-struts/contrib/struts-el/build-tests.xml
  
  Index: build-tests.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/contrib/struts-el/build-tests.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- build-tests.xml	26 Sep 2002 04:54:37 -0000	1.1
  +++ build-tests.xml	22 Dec 2002 01:25:33 -0000	1.2
  @@ -105,7 +105,6 @@
         <pathelement location="${commons-httpclient.jar}"/>
         <pathelement location="${commons-logging.jar}"/>
         <pathelement location="${commons-pool.jar}"/>
  -      <pathelement location="${commons-services.jar}"/>
         <pathelement location="${commons-validator.jar}"/>
         <pathelement location="${aspectjrt.jar}"/>
         <pathelement location="${cactus.jar}"/>
  @@ -206,8 +205,6 @@
           <copy file="${commons-logging.jar}"
                                         todir="${out.test.dir}/lib"/>
           <copy file="${commons-pool.jar}"
  -                                      todir="${out.test.dir}/lib"/>
  -        <copy file="${commons-services.jar}"
                                         todir="${out.test.dir}/lib"/>
           <copy file="${commons-validator.jar}"
                                         todir="${out.test.dir}/lib"/>
  
  
  
  1.2       +0 -5      jakarta-struts/contrib/struts-el/build-webapp.xml
  
  Index: build-webapp.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/contrib/struts-el/build-webapp.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- build-webapp.xml	26 Sep 2002 04:54:37 -0000	1.1
  +++ build-webapp.xml	22 Dec 2002 01:25:33 -0000	1.2
  @@ -69,10 +69,6 @@
                                         of the Jakarta Commons POOL
                                         package (version 1.0 or later).
   
  -        commons-services.jar          (required).  The path to the JAR file
  -                                      of the Jakarta Commons SERVICES
  -                                      package (version 1.0 or later).
  -
           commons-validator.jar         (required).  The path to the JAR file
                                         of the Jakarta Commons VALIDATOR
                                         package (version 1.0 or later).
  @@ -177,7 +173,6 @@
     <pathelement location="${commons-digester.jar}"/>
     <pathelement location="${commons-logging.jar}"/>
     <pathelement location="${commons-pool.jar}"/>
  -  <pathelement location="${commons-services.jar}"/>
     <pathelement location="${commons-validator.jar}"/>
     <pathelement location="${jdbc20ext.jar}"/>
     <pathelement location="${servlet.jar}"/>
  
  
  
  1.20      +0 -5      jakarta-struts/doc/userGuide/installation.xml
  
  Index: installation.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/installation.xml,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- installation.xml	18 Dec 2002 02:41:48 -0000	1.19
  +++ installation.xml	22 Dec 2002 01:25:33 -0000	1.20
  @@ -97,9 +97,6 @@
         <li><em>Lang</em> (Version 1.1 or later)</li>
         <li><em>Logging</em> (Version 1.0.2 or later)</li>
         <li><em>Pool</em> (Version 1.0.1 or later)</li>
  -      <li><em>Services</em> (No official release, obtain current
  -                        <a href="http://jakarta.apache.org/builds/jakarta-commons/nightly/commons-services">Nightly Build</a>
  -                        )</li>
         <li><em>Validator</em> (Version 1.0.1 or later) </li>
         </ul>
     </li>
  @@ -370,8 +367,6 @@
               Pool package JAR file from the Jakarta Commons project.</li>
           <li><strong>commons-resources.jar</strong> - Pathname of the
               Resources package JAR file from the Jakarta Commons project.</li>
  -        <li><strong>commons-services.jar</strong> - Pathname of the
  -            Services package JAR file from the Jakarta Commons project.</li>
           <li><strong>commons-validator.jar</strong> - Pathname of the
               Validator package JAR file from the Jakarta Commons project.</li>
           <li><strong>servletapi.home</strong> - Pathname to the directory of
  
  
  
  1.14      +0 -2      jakarta-struts/doc/userGuide/release-notes.xml
  
  Index: release-notes.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-struts/doc/userGuide/release-notes.xml,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- release-notes.xml	10 Oct 2002 03:42:44 -0000	1.13
  +++ release-notes.xml	22 Dec 2002 01:25:33 -0000	1.14
  @@ -154,8 +154,6 @@
       [<a href="http://jakarta.apache.org/commons/logging.html"><code>org.apache.commons.logging</code></a>]</li>
       <li><strong>Pool Package</strong>
       [<a href="http://jakarta.apache.org/commons/pool/index.html"><code>org.apache.commons.pool</code></a>]</li>
  -    <li><strong>Services Package</strong>
  -    [<a href="http://cvs.apache.org/viewcvs/jakarta-commons-sandbox/services/"><code>org.apache.commons.services</code></a>]</li>
       <li><strong>Validator Package</strong>
       [<a href="http://cvs.apache.org/viewcvs/jakarta-commons/validator/"><code>org.apache.commons.validator</code></a>]</li>
       </ul>
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>