dleslie     00/09/19 14:49:18

  Modified:    java     build.xml
  Log:
  Added AppplyXPath sample to samples target
  
  Revision  Changes    Path
  1.16      +8 -7      xml-xalan/java/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/build.xml,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- build.xml 2000/09/14 12:36:49     1.15
  +++ build.xml 2000/09/19 21:49:17     1.16
  @@ -40,7 +40,7 @@
     
     - Much of this file stolen from Stefano's xml-xerces build.xml  
     
  -   $Id: build.xml,v 1.15 2000/09/14 12:36:49 dleslie Exp $
  +   $Id: build.xml,v 1.16 2000/09/19 21:49:17 dleslie Exp $
      
   ==================================================================== -->
   
  @@ -80,8 +80,6 @@
     <property name="version.file" 
value="org/apache/xalan/processor/XSLProcessorVersion.java"/>
     <property name="xdocs.book" value="${xdocs.dir}/sources/xalan-jlocal.xml"/>
     <property name="xdocs.style" value="${xdocs.dir}/style"/>
  -  <property name="xdocs.javadocbook" 
value="${xdocs.dir}/sources/javadocPackages.xml"/>
  -  <property name="xdocs.javadocloader" value="sbk:/style/loaderjdoc.xml"/>
     <property name="doc.generator" value="org.apache.stylebook.StyleBook"/>
     <property name="doc.generator.styletargz" 
value="${xdocs.dir}/xml-site-style.tar.gz"/>
     <property name="doc.generator.styletar" 
value="${xdocs.dir}/xml-site-style.tar"/>
  @@ -129,7 +127,7 @@
       <javac srcdir="${src.dir}/${xalan.reldir}" 
              destdir="${build.classes}" 
              excludesfile="compat.xslt.excludes"
  -           debug="${debug}" />
  +           debug="${debug}"/>
     </target>
   
     <target name="compile" depends="prepare,compile.trax,compile.serialize">
  @@ -188,10 +186,13 @@
              debug="${debug}"/>
       <javac srcdir="${samples.dir}/Pipe" 
classpath="${java.class.path}:${build.dir}/${xalan.jar}" 
              destdir="${build.samples}"  excludes="${exclude}"
  -           debug="${debug}"/> 
  +           debug="${debug}"/>
  +   <javac srcdir="${samples.dir}/ApplyXPath" 
classpath="${java.class.path}:${build.dir}/${xalan.jar}" 
  +           destdir="${build.samples}" excludes="${exclude}" 
  +           debug="${debug}"/>                                  
      <javac srcdir="${samples.dir}/extensions" 
classpath="${java.class.path}:${build.dir}/${xalan.jar}" 
              destdir="${build.samples}" excludes="${exclude}" 
  -           debug="${debug}"/>           
  +           debug="${debug}"/> 
       <jar jarfile="${build.dir}/xalansamples.jar" basedir="${build.samples}"
            includes="*.class"/>
                      
  @@ -220,7 +221,7 @@
     
     <target name="autodocs">
       <echo message="autodocs is for automated build process, without 
dependencies"/>   
  -    <java fork="yes" classname="${doc.generator}" 
classpath="${java.class.path}:${build.dir}/${xalan.jar}" 
  +    <java fork="yes" classname="${doc.generator}" 
classpath="${java.class.path}:${build.dir}/${xalan.jar}"
            args="targetDirectory=${build.docs} ${xdocs.book} ${xdocs.style}"/> 
   
     </target>
     
  
  
  

Reply via email to