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 2010/06/16 09:30:43 UTC

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

Author: bodewig
Date: Wed Jun 16 07:30:43 2010
New Revision: 955145

URL: http://svn.apache.org/viewvc?rev=955145&view=rev
Log:
use a separate NS for the classifier attribute

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=955145&r1=955144&r2=955145&view=diff
==============================================================================
--- ant/antlibs/common/trunk/ivy.xml (original)
+++ ant/antlibs/common/trunk/ivy.xml Wed Jun 16 07:30:43 2010
@@ -67,23 +67,23 @@
           <ivy-author name="Apache Ant Development Team"
             url="http://ant.apache.org/"/>
         </info>
-        <publications>  
+        <publications xmlns:e="urn:ant.apache.org:ivy-extras">  
           <artifact name="${artifact.name}" type="pom" ext="pom"/>
           <artifact name="${artifact.name}" type="pom.asc" ext="pom.asc"/>
           <artifact name="${artifact.name}" type="jar" ext="jar"/>
           <artifact name="${artifact.name}" type="jar.asc" ext="jar.asc"/>
           <artifact name="${artifact.name}" type="source" ext="jar"
-                    classifier="sources"/>
+                    e:classifier="sources"/>
           <artifact name="${artifact.name}" type="source.asc" ext="jar.asc"
-                    classifier="sources"/>
+                    e:classifier="sources"/>
           <artifact name="${artifact.name}" type="javadoc" ext="jar"
-                    classifier="javadoc"/>
+                    e:classifier="javadoc"/>
           <artifact name="${artifact.name}" type="javadoc.asc" ext="jar.asc"
-                    classifier="javadoc"/>
+                    e:classifier="javadoc"/>
           <artifact name="${artifact.name}" type="ivy" ext="xml"
-                    classifier="ivy"/>
+                    e:classifier="ivy"/>
           <artifact name="${artifact.name}" type="ivy.asc" ext="xml.asc"
-                    classifier="ivy"/>
+                    e:classifier="ivy"/>
         </publications>
       </ivy-module>
     </echoxml>