You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@velocity.apache.org by nb...@apache.org on 2009/01/01 19:55:37 UTC

svn commit: r730586 - /velocity/engine/trunk/build/build.xml

Author: nbubna
Date: Thu Jan  1 10:55:37 2009
New Revision: 730586

URL: http://svn.apache.org/viewvc?rev=730586&view=rev
Log:
a couple more release instruction tweaks

Modified:
    velocity/engine/trunk/build/build.xml

Modified: velocity/engine/trunk/build/build.xml
URL: http://svn.apache.org/viewvc/velocity/engine/trunk/build/build.xml?rev=730586&r1=730585&r2=730586&view=diff
==============================================================================
--- velocity/engine/trunk/build/build.xml (original)
+++ velocity/engine/trunk/build/build.xml Thu Jan  1 10:55:37 2009
@@ -878,8 +878,12 @@
       later when you make the tag for this release (post-vote).
 
     * Go to ${build.dir} and sign all the jar, zip, tar.gz and pom files
-      with your personal PGP key. If using gpg, you'll probably do this:
-        gpg --armor --output ${final.name}.zip.asc --detach-sig ${final.name}.zip
+      with your personal PGP key using a script like this:
+        #! /bin/bash
+        for i in *.tar.gz *.zip *jar; do
+          gpg --armor --output $i.asc --detach-sig $i
+        done
+
 
     * SSH into people.apache.org and make sure that this directory exists:
         ${publish.dir}
@@ -889,6 +893,8 @@
       Some instructions for that are at the top of that file.
 
     * Call "ant publish"
+    
+    * Review http://wiki.apache.org/velocity/ReleaseProcess for more details.
     </echo>        
   </target>