Author: bodewig
Date: Tue Jun 15 09:21:22 2010
New Revision: 954780
URL: http://svn.apache.org/viewvc?rev=954780&view=rev
Log:
check OpenPGP sigs for -sources.jar and -javadoc.jar as well
Modified:
ant/antlibs/common/trunk/build.xml
Modified: ant/antlibs/common/trunk/build.xml
URL:
http://svn.apache.org/viewvc/ant/antlibs/common/trunk/build.xml?rev=954780&r1=954779&r2=954780&view=diff
==============================================================================
--- ant/antlibs/common/trunk/build.xml (original)
+++ ant/antlibs/common/trunk/build.xml Tue Jun 15 09:21:22 2010
@@ -489,12 +489,20 @@
<uptodate property="pom.sig.ok"
srcfile="${upload.dir}/${artifact.stub}.pom"
targetfile="${upload.dir}/${artifact.stub}.pom.asc"/>
+ <uptodate property="sources.sig.ok"
+ srcfile="${upload.dir}/${artifact.stub}-sources.jar"
+ targetfile="${upload.dir}/${artifact.stub}-sources.jar.asc"/>
+ <uptodate property="javadoc.sig.ok"
+ srcfile="${upload.dir}/${artifact.stub}-javadoc.jar"
+ targetfile="${upload.dir}/${artifact.stub}-javadoc.jar.asc"/>
<fail message="Your OpenPGP signature of the artifacts is too old or
missing">
<condition>
<not>
<and>
<isset property="jar.sig.ok"/>
<isset property="pom.sig.ok"/>
+ <isset property="sources.sig.ok"/>
+ <isset property="javadoc.sig.ok"/>
</and>
</not>
</condition>