Author: bodewig
Date: Tue Jun 15 10:54:32 2010
New Revision: 954806

URL: http://svn.apache.org/viewvc?rev=954806&view=rev
Log:
why not publish the ivy.xml files as well?

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

Modified: ant/antlibs/common/trunk/build.xml
URL: 
http://svn.apache.org/viewvc/ant/antlibs/common/trunk/build.xml?rev=954806&r1=954805&r2=954806&view=diff
==============================================================================
--- ant/antlibs/common/trunk/build.xml (original)
+++ ant/antlibs/common/trunk/build.xml Tue Jun 15 10:54:32 2010
@@ -470,6 +470,7 @@
     <mkdir dir="${upload.dir}"/>
     <copy file="${jarname}" todir="${upload.dir}"/>
     <copy file="${target.pom}" todir="${upload.dir}"/>
+    <copy file="${target.ivy.xml}" todir="${upload.dir}"/>
     <jar destfile="${upload.dir}/${artifact.stub}-sources.jar">
       <fileset dir="src/main"/>
       <metainf file="NOTICE"/>
@@ -495,6 +496,9 @@
     <uptodate property="javadoc.sig.ok"
               srcfile="${upload.dir}/${artifact.stub}-javadoc.jar"
               targetfile="${upload.dir}/${artifact.stub}-javadoc.jar.asc"/>
+    <uptodate property="ivy.sig.ok"
+              srcfile="${upload.dir}/${artifact.stub}-ivy.xml"
+              targetfile="${upload.dir}/${artifact.stub}-ivy.xml.asc"/>
     <fail message="Your OpenPGP signature of the artifacts is too old or 
missing">
       <condition>
         <not>
@@ -503,6 +507,7 @@
             <isset property="pom.sig.ok"/>
             <isset property="sources.sig.ok"/>
             <isset property="javadoc.sig.ok"/>
+            <isset property="ivy.sig.ok"/>
           </and>
         </not>
       </condition>

Modified: ant/antlibs/common/trunk/ivy.xml
URL: 
http://svn.apache.org/viewvc/ant/antlibs/common/trunk/ivy.xml?rev=954806&r1=954805&r2=954806&view=diff
==============================================================================
--- ant/antlibs/common/trunk/ivy.xml (original)
+++ ant/antlibs/common/trunk/ivy.xml Tue Jun 15 10:54:32 2010
@@ -80,6 +80,10 @@
                     classifier="javadoc"/>
           <artifact name="${artifact.name}" type="javadoc.asc" ext="jar.asc"
                     classifier="javadoc"/>
+          <artifact name="${artifact.name}" type="ivy" ext="xml"
+                    classifier="ivy"/>
+          <artifact name="${artifact.name}" type="ivy.asc" ext="xml.asc"
+                    classifier="ivy"/>
         </publications>
       </ivy-module>
     </echoxml>


Reply via email to