I have found that a bootstrap build from an svn checkout of trunk fails because xml-commons-resolver in <http://www.apache.org/dist/xerces/xml-commons/binaries/> has been updated from 1.1 to 1.2. The attached patch to build.xml fixes this in my hands.
Regards, Peter. -- Peter Keller Tel.: +44 (0)1223 353033 Global Phasing Ltd., Fax.: +44 (0)1223 366889 Sheraton House, Castle Park, Cambridge CB3 0AX United Kingdom
--- build.xml 2012-08-01 11:02:57.587466431 +0100 +++ ../build.xml-trunk-patched 2012-08-01 10:58:04.449762854 +0100 @@ -170,7 +170,7 @@ <target name="xcresolver.zip" depends="check.xcresolver.zip, dirs" unless="xcresolver.zip.exists"> <get dest="external/lib/xcresolver.zip" - src="http://www.apache.org/dist/xml/commons/binaries/xml-commons-resolver-1.1.zip" + src="http://www.apache.org/dist/xml/commons/binaries/xml-commons-resolver-1.2.zip" verbose="true" usetimestamp="true" ignoreerrors="true"/> </target> @@ -186,8 +186,8 @@ <include name="*/resolver.jar"/> </patternset> </unzip> - <copy file="external/lib/xml-commons-resolver-1.1/resolver.jar" tofile="build/lib/resolver.jar"/> - <delete dir="external/lib/xml-commons-resolver-1.1"/> + <copy file="external/lib/xml-commons-resolver-1.2/resolver.jar" tofile="build/lib/resolver.jar"/> + <delete dir="external/lib/xml-commons-resolver-1.2"/> </target>
--------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@xmlbeans.apache.org For additional commands, e-mail: dev-h...@xmlbeans.apache.org