You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by mc...@apache.org on 2005/01/10 22:42:05 UTC

cvs commit: xml-xalan/java build.xml

mcnamara    2005/01/10 13:42:05

  Modified:    java     build.xml
  Log:
  Fix for Jira bug report XALANJ-1853 .  Use the new xalan interpretive manifest file
  when building the standalone xalan.jar that only contains the interpretive processor.
  
  Revision  Changes    Path
  1.214     +6 -4      xml-xalan/java/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/build.xml,v
  retrieving revision 1.213
  retrieving revision 1.214
  diff -u -r1.213 -r1.214
  --- build.xml	28 Oct 2004 20:04:38 -0000	1.213
  +++ build.xml	10 Jan 2005 21:42:05 -0000	1.214
  @@ -110,6 +110,7 @@
     <!-- Relative locations of source directories -->
     <property name="manifest.mf" value="./src/MANIFEST.MF"/>
     <property name="manifest.xsltc.mf" value="./src/manifest.xsltc"/>
  +  <property name="manifest.xalan-interpretive.mf" value="./src/manifest.xalan-interpretive"/>  
     <property name="XSLTInfo.props" value="./src/org/apache/xalan/res/XSLTInfo.properties"/>  
     <property name="src.dir" value="./src"/>
     <property name="apachexml.reldir" value="org/apache/xml"/>
  @@ -631,12 +632,13 @@
       <filter token="impl.version" value="${impl.version}"/>
       <filter token="java.version" value="${java.version}"/>
       <filter token="java.vendor" value="${java.vendor}"/>     
  -    <copy todir="${build.dir}" file="${manifest.mf}" filtering="true"/>
  -    <jar jarfile="${build.xalan-interpretive.jar}" manifest="${build.dir}/MANIFEST.MF" basedir="${build.classes}" >
  +    <copy todir="${build.dir}" file="${manifest.xalan-interpretive.mf}" filtering="true"/>
  +    <jar jarfile="${build.xalan-interpretive.jar}" manifest="${build.dir}/manifest.xalan-interpretive" basedir="${build.classes}" >
         <patternset><!-- relative to jar/@basedir -->
           <include name="${apachexml.reldir}/**/*" />
           <include name="${xpath.reldir}/**/*" />
           <include name="${xalan.reldir}/**/*" />
  +        <include name="${domxpath.reldir}/**/*" />        
           <include name="META-INF/services/*" />
           <exclude name="${xsltc.reldir}/**/*" />
           <exclude name="${serializer.reldir}/**/*" />
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: xalan-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xalan-cvs-help@xml.apache.org