You are viewing a plain text version of this content. The canonical link for it is here.
Posted to taglibs-dev@jakarta.apache.org by gl...@apache.org on 2001/07/10 01:51:25 UTC

cvs commit: jakarta-taglibs/xsl build.xml

glenn       01/07/09 16:51:24

  Modified:    xsl      build.xml
  Log:
  Use jar files as defined in build.properties
  
  Revision  Changes    Path
  1.8       +4 -25     jakarta-taglibs/xsl/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-taglibs/xsl/build.xml,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- build.xml	2001/07/01 20:08:29	1.7
  +++ build.xml	2001/07/09 23:51:23	1.8
  @@ -1,5 +1,5 @@
   <!-- ANT Build Script for the "xsl" Custom Tag Library -->
  -<!-- $Id: build.xml,v 1.7 2001/07/01 20:08:29 glenn Exp $ -->
  +<!-- $Id: build.xml,v 1.8 2001/07/09 23:51:23 glenn Exp $ -->
   <project name="xsl" default="main" basedir=".">
   
       <!-- ******************** Adjustable Properties *********************** -->
  @@ -9,29 +9,12 @@
           The following property values should be examined and customized
   	for each custom tag library subproject.
   
  -	ant.home                    Home directory for the ANT build tool
  -	                            This is normally defaulted from the
  -				    ANT_HOME environment variable in the
  -				    build script.
  -
  -	servlet.jar		    Pathname to the "servlet.jar" file
  -	                            from the Servletapi distribution.
  -
           taglib.name		    Base name of this tag library subproject.
   
  -	xalan.jar                   Pathname to the "xalan.jar" file from the
  -	                            Xalan distribution.
  -
  -	xerces.jar		    Pathname to the "xerces.jar" file from the
  -	                            Xerces or Xalan distribution.
  -
       -->
   
  +    <property file="../build.properties"/>
       <property name="taglib.name"    value="xsl"/>
  -    <property name="ant.home"       value="../../jakarta-ant"/>
  -    <property name="servlet.jar"    value="../../jakarta-servletapi/lib/servlet.jar"/>
  -    <property name="xalan.jar"      value="../../xml-xalan/xalan.jar"/>
  -    <property name="xerces.jar"     value="../../xml-xalan/xerces.jar"/>
   
   
       <!-- ****************** Project Standard Properties ******************* -->
  @@ -48,8 +31,6 @@
   
       -->
   
  -    <property name="build.dir"      value="../build"/>
  -    <property name="dist.dir"       value="../dist"/>
       <property name="taglibs.xsl"    value="../src/doc/stylesheets/taglibs.xsl"/>
   
   
  @@ -163,11 +144,9 @@
                 tofile="${build.examples}/WEB-INF/${taglib.name}.tld"/>
       <copy file="${dist.library}"
                 tofile="${build.examples}/WEB-INF/lib/${taglib.name}.jar"/>
  -    <copy file="${servlet.jar}"
  -              tofile="${build.examples}/WEB-INF/lib/servlet.jar"/>
       <copy file="${xerces.jar}"
                 tofile="${build.examples}/WEB-INF/lib/xerces.jar"/>
  -    <copy file="${xalan.jar}"
  +    <copy file="${xalan1.jar}"
                 tofile="${build.examples}/WEB-INF/lib/xalan.jar"/>
     </target>
   
  @@ -176,7 +155,7 @@
       <copy file="${conf.src}/taglib.tld"
                 tofile="${build.library}/META-INF/taglib.tld"/>
       <javac srcdir="${library.src}" destdir="${build.library}"
  -           classpath="${servlet.jar};${xalan.jar};${xerces.jar}" debug="on"/>
  +           classpath="${servlet.jar};${xalan1.jar};${xerces.jar}" debug="on"/>
     </target>
   
     <!-- Compile the library as well as the associated applications -->