You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@forrest.apache.org by je...@apache.org on 2002/11/21 06:49:50 UTC

cvs commit: xml-forrest/src/resources/convert/cocoon forrest.build.xml

jefft       2002/11/20 21:49:50

  Modified:    src/resources/convert/cocoon forrest.build.xml
  Log:
  Fix a bug which prevented jdk1.3 users from running the webapp
  
  Revision  Changes    Path
  1.2       +2 -3      xml-forrest/src/resources/convert/cocoon/forrest.build.xml
  
  Index: forrest.build.xml
  ===================================================================
  RCS file: /home/cvs/xml-forrest/src/resources/convert/cocoon/forrest.build.xml,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- forrest.build.xml	21 Nov 2002 00:49:28 -0000	1.1
  +++ forrest.build.xml	21 Nov 2002 05:49:50 -0000	1.2
  @@ -619,11 +619,10 @@
       <!-- Copy XML jars if not running JDK 1.4 (where they're built-in) -->
       <available property="jdk1.4+" classname="java.lang.CharSequence"/>
       <copy todir="${project.webapp}/WEB-INF/lib">
  -      <fileset dir="${forrest.home}/lib">
  -        <include name="endorsed/*jar" unless="jdk1.4+"/>
  +      <fileset dir="${forrest.home}/lib/endorsed">
  +        <include name="*jar" unless="jdk1.4+"/>
         </fileset>
       </copy>
  -
       <echo>
   ---------------------------------
   Webapp generated in ${project.webapp}