You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by cr...@locus.apache.org on 2000/08/05 20:25:57 UTC

cvs commit: jakarta-tomcat/proposals/catalina build.xml

craigmcc    00/08/05 11:25:57

  Modified:    proposals/catalina build.xml
  Log:
  Jasper requires that a JAXP-compatible XML parser be visible on the system
  classpath (because it is loaded by the application class loader), so copy the
  "jaxp.jar" and "parser.jar" files to the $CATALINA_HOME/lib directory as well
  as $CATALINA_HOME/server (where Catalina requires them).
  
  Revision  Changes    Path
  1.27      +8 -0      jakarta-tomcat/proposals/catalina/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat/proposals/catalina/build.xml,v
  retrieving revision 1.26
  retrieving revision 1.27
  diff -u -r1.26 -r1.27
  --- build.xml	2000/08/04 00:52:33	1.26
  +++ build.xml	2000/08/05 18:25:57	1.27
  @@ -41,14 +41,22 @@
       <copydir src="src/conf" dest="${catalina.build}/conf"/>
   
       <!-- Shared Extensions -->
  +    <!--   All applications need the servlet API classes -->
       <copyfile src="${servlet.jar}"
                dest="${catalina.build}/lib/servlet.jar"/>
  +    <!--   Jasper needs a JAXP-compatible XML parser -->
  +    <copyfile src="${jaxp.home}/jaxp.jar"
  +             dest="${catalina.build}/lib/jaxp.jar"/>
  +    <copyfile src="${jaxp.home}/parser.jar"
  +             dest="${catalina.build}/lib/parser.jar"/>
   
       <!-- Server Components -->
  +    <!--   Catalina needs a JAXP-compatible XML parser -->
       <copyfile src="${jaxp.home}/jaxp.jar"
                dest="${catalina.build}/server/jaxp.jar"/>
       <copyfile src="${jaxp.home}/parser.jar"
                dest="${catalina.build}/server/parser.jar"/>
  +    <!--   Catalina needs the regular expression library -->
       <copyfile src="${regexp.jar}"
                dest="${catalina.build}/server/regexp.jar"/>