You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by co...@locus.apache.org on 2000/07/01 01:37:13 UTC

cvs commit: jakarta-tomcat build.xml

costin      00/06/30 16:37:13

  Modified:    .        build.xml
  Log:
  Added jaxp to the build - it is required in order to build tomcat,
  and dist must copy the jars in lib/.
  
  ( same mechanism is used for servletapi )
  XXX do the same for JSSE
  
  Revision  Changes    Path
  1.53      +4 -1      jakarta-tomcat/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat/build.xml,v
  retrieving revision 1.52
  retrieving revision 1.53
  diff -u -r1.52 -r1.53
  --- build.xml	2000/06/29 18:01:21	1.52
  +++ build.xml	2000/06/30 23:37:12	1.53
  @@ -11,6 +11,7 @@
       <property name="tomcat.home" value="../dist/tomcat"/>
       <property name="j2ee.home" value="../../j2ee/build/unix"/>
       <property name="optimize" value="true" />
  +    <property name="jaxp" value="../jaxp1.0.1" />
     </target>
   
     <!-- ==================== Copy static files ==================== -->
  @@ -65,7 +66,7 @@
                  classname="java.security.PrivilegedAction" />
   
       <javac srcdir="src/share" destdir="${tomcat.build}/classes"
  -           classpath="${servlet.jar}" 
  +           classpath="${servlet.jar};${jaxp}/jaxp.jar" 
              debug="on" 
              optimize="${optimize}"
              deprecation="off" >
  @@ -163,6 +164,8 @@
            basedir="${tomcat.home}/classes"
            includes="org/apache/jasper/**"/>
       <copyfile src="${servlet.jar}" dest="${tomcat.home}/lib/servlet.jar"/>
  +    <copyfile src="${jaxp}/jaxp.jar" dest="${tomcat.home}/lib/jaxp.jar"/>
  +    <copyfile src="${jaxp}/parser.jar" dest="${tomcat.home}/lib/parser.jar"/>
   
       <!-- Add Tomcat internal javadoc -->
       <mkdir dir="${tomcat.home}/webapps/ROOT/javadoc" />