mrglavas 2004/04/23 14:50:05 Modified: java build.xml Log: Copy org.w3c.dom.DOMImplementationSourceList to META-INF/services.
Enable DOM L3 build to work with new DOMImplementationListImpl class. Revision Changes Path 1.167 +16 -4 xml-xerces/java/build.xml Index: build.xml =================================================================== RCS file: /home/cvs/xml-xerces/java/build.xml,v retrieving revision 1.166 retrieving revision 1.167 diff -u -r1.166 -r1.167 --- build.xml 6 Apr 2004 17:34:55 -0000 1.166 +++ build.xml 23 Apr 2004 21:50:05 -0000 1.167 @@ -167,6 +167,7 @@ <copy file="${src.dir}/org/apache/xerces/parsers/org.xml.sax.driver" tofile="${build.dest}/META-INF/services/org.xml.sax.driver"/> + </target> <!-- =================================================================== --> @@ -175,6 +176,9 @@ <target name="prepare-src" depends="prepare-common"> <copy file="${src.dir}/org/apache/xerces/parsers/org.apache.xerces.xni.parser.XMLParserConfiguration" tofile="${build.dest}/META-INF/services/org.apache.xerces.xni.parser.XMLParserConfiguration"/> + + <copy file="${src.dir}/org/apache/xerces/dom/org.w3c.dom.DOMImplementationSourceList" + tofile="${build.dest}/META-INF/services/org.w3c.dom.DOMImplementationSourceList"/> <!-- copy src files --> <copy todir="${build.src}"> @@ -871,6 +875,9 @@ <target name="dtdprepare-src" depends="prepare-common"> <copy file="${src.dir}/org/apache/xerces/parsers/org.apache.xerces.xni.parser.DTDConfiguration" tofile="${build.dest}/META-INF/services/org.apache.xerces.xni.parser.XMLParserConfiguration"/> + + <copy file="${src.dir}/org/apache/xerces/dom/org.apache.xerces.dom.DOMImplementationSourceImpl" + tofile="${build.dest}/META-INF/services/org.w3c.dom.DOMImplementationSourceList"/> <!-- copy src files --> <copy todir="${build.src}"> @@ -887,7 +894,7 @@ org/apache/xerces/impl/xs/identity/** org/apache/xerces/impl/xs/traversers/** org/apache/xerces/impl/xs/models/** - org/apache/xerces/impl/xs/opti/** + org/apache/xerces/impl/xs/opti/** org/apache/xerces/impl/xs/util/NSItemListImpl.java org/apache/xerces/impl/xs/util/XInt.java org/apache/xerces/impl/xs/util/XIntPool.java @@ -902,7 +909,7 @@ org/apache/xerces/parsers/DOMASBuilderImpl.java org/apache/xerces/parsers/StandardParserConfiguration.java org/apache/xerces/parsers/IntegratedParserConfiguration.java - org/apache/xerces/parsers/XIncludeParserConfiguration.java + org/apache/xerces/parsers/XIncludeParserConfiguration.java org/apache/xerces/parsers/SecurityConfiguration.java org/apache/xerces/parsers/XML11Configuration.java org/apache/xerces/parsers/XMLGrammarCachingConfiguration.java @@ -1122,6 +1129,9 @@ <copy file="${src.dir}/org/apache/xerces/parsers/org.apache.xerces.xni.parser.XMLParserConfiguration" tofile="${build.dest}/META-INF/services/org.apache.xerces.xni.parser.XMLParserConfiguration"/> + <copy file="${src.dir}/org/apache/xerces/dom/org.w3c.dom.DOMImplementationSourceList" + tofile="${build.dest}/META-INF/services/org.w3c.dom.DOMImplementationSourceList"/> + <!-- copy src files --> <copy todir="${build.src}"> <fileset @@ -1171,6 +1181,8 @@ token="org.apache.xerces.dom3" value="org.w3c.dom"/> <replace file="${build.src}/org/apache/xerces/dom/DOMLocatorImpl.java" token="org.apache.xerces.dom3" value="org.w3c.dom"/> + <replace file="${build.src}/org/apache/xerces/dom/DOMImplementationListImpl.java" + token="org.apache.xerces.dom3" value="org.w3c.dom"/> <replace file="${build.src}/org/apache/xerces/dom/DOMImplementationSourceImpl.java" token="org.apache.xerces.dom3" value="org.w3c.dom"/> <replace file="${build.src}/org/apache/xerces/dom/DOMXSImplementationSourceImpl.java" @@ -1183,7 +1195,7 @@ token="org.apache.xerces.dom3" value="org.w3c.dom"/> <replace file="${build.src}/org/apache/xerces/parsers/AbstractDOMParser.java" token="org.apache.xerces.dom3" value="org.w3c.dom"/> - <replace file="${build.src}/org/apache/xerces/util/DOMErrorHandlerWrapper.java" + <replace file="${build.src}/org/apache/xerces/util/DOMErrorHandlerWrapper.java" token="org.apache.xerces.dom3" value="org.w3c.dom"/> <replace file="${build.src}/org/apache/xml/serialize/XMLSerializer.java" token="org.apache.xerces.dom3" value="org.w3c.dom"/> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]