You are viewing a plain text version of this content. The canonical link for it is here.
Posted to svn@forrest.apache.org by cr...@apache.org on 2011/01/03 06:14:24 UTC

svn commit: r1054526 - /forrest/trunk/main/build.xml

Author: crossley
Date: Mon Jan  3 05:14:23 2011
New Revision: 1054526

URL: http://svn.apache.org/viewvc?rev=1054526&view=rev
Log:
Generate the md5,sha1 checksums during "release-dist".
Exclude "examples" not yet ready.

Modified:
    forrest/trunk/main/build.xml

Modified: forrest/trunk/main/build.xml
URL: http://svn.apache.org/viewvc/forrest/trunk/main/build.xml?rev=1054526&r1=1054525&r2=1054526&view=diff
==============================================================================
--- forrest/trunk/main/build.xml (original)
+++ forrest/trunk/main/build.xml Mon Jan  3 05:14:23 2011
@@ -127,6 +127,8 @@
         <include name="**/forrest"/>
       </tarfileset>
     </tar>
+    <checksum file="${dist.dir}/${release-name-bin}.tar.gz" algorithm="md5" forceOverwrite="true" />
+    <checksum file="${dist.dir}/${release-name-bin}.tar.gz" algorithm="sha1" forceOverwrite="true" />
 <!-- Prepare *.zip for "crlf" eol-style systems -->
 <!-- FIXME: 2007-04-11
      Leaving this alone. fixcrlf seems to mess with some images and jar files.
@@ -139,6 +141,8 @@
       file="${dist.dir}/${release-name-bin}.zip" >
       <zipfileset dir="${dist-shbat.dir}" prefix="${release-name-bin}"/>
     </zip>
+    <checksum file="${dist.dir}/${release-name-bin}.zip" algorithm="md5" forceOverwrite="true" />
+    <checksum file="${dist.dir}/${release-name-bin}.zip" algorithm="sha1" forceOverwrite="true" />
   </target>
 <!-- =================================================================== -->
 <!-- Make all known distributions                                        -->
@@ -259,6 +263,7 @@ Remove any build directories in a tree b
         <exclude name="whiteboard/**"/>
         <exclude name="plugins/**"/>
 <!-- exclude some tools that are not yet ready to be bundled -->
+        <exclude name="examples/**"/>
         <exclude name="tools/eclipse/**"/>
         <exclude name="tools/logos/**"/>
 <!-- testing removal of tools/anttasks FOR-911 -->