You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by dw...@apache.org on 2012/04/14 21:23:09 UTC

svn commit: r1326183 - /lucene/dev/trunk/build.xml

Author: dweiss
Date: Sat Apr 14 19:23:09 2012
New Revision: 1326183

URL: http://svn.apache.org/viewvc?rev=1326183&view=rev
Log:
LUCENE-3984: Add a target to recalculate SHA1 checksums for JAR (jar-checksums, top-level).

Modified:
    lucene/dev/trunk/build.xml

Modified: lucene/dev/trunk/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/build.xml?rev=1326183&r1=1326182&r2=1326183&view=diff
==============================================================================
--- lucene/dev/trunk/build.xml (original)
+++ lucene/dev/trunk/build.xml Sat Apr 14 19:23:09 2012
@@ -163,4 +163,11 @@
     </subant>
   </target>
 
+  <target name="jar-checksums" description="Recompute SHA1 checksums for all JAR files.">
+    <checksum algorithm="SHA1">
+      <fileset dir="${basedir}">
+        <include name="**/*.jar"/>
+      </fileset>
+    </checksum>
+  </target>
 </project>