neilg 2003/03/25 21:17:46 Modified: java build.xml Added: java/src manifest.xerces Log: add manifest info after the manner of xml-commons. Should fix bug 9345 Revision Changes Path 1.130 +7 -2 xml-xerces/java/build.xml Index: build.xml =================================================================== RCS file: /home/cvs/xml-xerces/java/build.xml,v retrieving revision 1.129 retrieving revision 1.130 diff -u -r1.129 -r1.130 --- build.xml 26 Mar 2003 00:08:33 -0000 1.129 +++ build.xml 26 Mar 2003 05:17:45 -0000 1.130 @@ -246,6 +246,10 @@ <!-- Creates the implementation class package, excluding DOM Level 3 --> <!-- =================================================================== --> <target name="jar" depends="compile"> + <!-- take care of manifest file --> + <copy todir="${build.dir}" file="${src.dir}/manifest.xerces"/> + <replace file="${build.dir}/manifest.xerces" + token="@@VERSION@@" value="${parser.Version}"/> <jar jarfile="${build.dir}/${jar.parser}" basedir="${build.dest}" compress="true" @@ -257,7 +261,8 @@ org/w3c/dom/DOMImplementationSource.class org/w3c/dom/DOMImplementationRegistry.class org/w3c/dom/DOMLocator.class - org/w3c/dom/UserDataHandler.class"/> + org/w3c/dom/UserDataHandler.class" + manifest="${build.dir}/manifest.xerces"/> </target> <!-- =================================================================== --> 1.1 xml-xerces/java/src/manifest.xerces Index: manifest.xerces =================================================================== Manifest-Version: 1.0 Created-By: 1.2.2 (Sun Microsystems Inc.) Name: org/apache/xerces/impl/Version Comment: @impl.name@ for http://xml.apache.org/xerces2-j Implementation-Title: org.apache.xerces.impl.Version Implementation-Version: @@VERSION@@ Implementation-Vendor: Apache Software Foundation Implementation-URL: http://xml.apache.org/xerces2-j/ Name: org/xml/sax/ Comment: based on jaxp-tck-1_2_0 branch of xml-commons Specification-Title: Simple API for XML Specification-Vendor: David Megginson Specification-Version: 2.0 Implementation-Title: org.xml.sax Implementation-Version: 2.0 + small bugfixes Implementation-Vendor: David Megginson Implementation-URL: http://www.saxproject.org Name: org/w3c/dom/ Comment: based on jaxp-tck-1_2_0 branch of xml-commons Specification-Title: Document Object Model, Level 2 Core Specification-Vendor: World Wide Web Consortium Specification-Version: 1.0 Implementation-Title: org.w3c.dom Implementation-Version: 1.0 Implementation-Vendor: World Wide Web Consortium Implementation-URL: http://www.w3c.org/DOM/ Name: javax/xml/parsers/ Comment: based on jaxp-tck-1_2_0 branch of xml-commons Specification-Title: Java API for XML Processing Specification-Version: 1.2 Specification-Vendor: Sun Microsystems Inc. Implementation-Title: javax.xml.parsers Implementation-Version: 1.2 Implementation-Vendor: Sun Microsystems Inc. Implementation-URL: http://java.sun.com/xml/jaxp.html Name: javax/xml/transform/ Comment: based on jaxp-tck-1_2_0 branch of xml-commons Specification-Title: Java API for XML Processing Specification-Version: 1.2 Specification-Vendor: Sun Microsystems Inc. Implementation-Title: javax.xml.transform Implementation-Version: 1.2 Implementation-Vendor: Sun Microsystems Inc. Implementation-URL: http://java.sun.com/xml/jaxp.html Name: org.apache.xerces.xni/ Comment: Xerces Native Interface Specification-Title: Xerces Native Interface Specification-Version: 1.1 Specification-Vendor: Apache Software Foundation Implementation-Title: org.apache.xerces.xni Implementation-Version: 1.1 Implementation-Vendor: Apache Software Foundation Implementation-URL: http://xml.apache.org/xerces2-j/
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]