You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by bo...@apache.org on 2011/01/26 20:33:22 UTC

svn commit: r1063844 - /ant/antlibs/common/trunk/ivy.xml

Author: bodewig
Date: Wed Jan 26 19:33:22 2011
New Revision: 1063844

URL: http://svn.apache.org/viewvc?rev=1063844&view=rev
Log:
echoxml fails with some internal error in Xerces

Modified:
    ant/antlibs/common/trunk/ivy.xml

Modified: ant/antlibs/common/trunk/ivy.xml
URL: http://svn.apache.org/viewvc/ant/antlibs/common/trunk/ivy.xml?rev=1063844&r1=1063843&r2=1063844&view=diff
==============================================================================
--- ant/antlibs/common/trunk/ivy.xml (original)
+++ ant/antlibs/common/trunk/ivy.xml Wed Jan 26 19:33:22 2011
@@ -56,7 +56,7 @@
   -->
   <target name="make-ivy.xml" depends="ivy-init" unless="project.has-ivy.xml?">
     <echo message="Creating ivy.xml ${target.ivy.xml}" level="verbose"/>
-    <echoxml file="${target.ivy.xml}">
+    <echo file="${target.ivy.xml}"><![CDATA[
       <ivy-module version="2.0">
         <info organisation="${ivy.organization}"
               module="ant"
@@ -86,7 +86,7 @@
                     e:classifier="ivy"/>
         </publications>
       </ivy-module>
-    </echoxml>
+ ]]></echo>
   </target>
 
   <target name="ivy.xml" depends="copy-ivy.xml,make-ivy.xml">