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

svn commit: r1307388 - /lucene/dev/branches/lucene3930/build.xml

Author: rmuir
Date: Fri Mar 30 12:55:08 2012
New Revision: 1307388

URL: http://svn.apache.org/viewvc?rev=1307388&view=rev
Log:
LUCENE-3930: add clean-jars task

Modified:
    lucene/dev/branches/lucene3930/build.xml

Modified: lucene/dev/branches/lucene3930/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene3930/build.xml?rev=1307388&r1=1307387&r2=1307388&view=diff
==============================================================================
--- lucene/dev/branches/lucene3930/build.xml (original)
+++ lucene/dev/branches/lucene3930/build.xml Fri Mar 30 12:55:08 2012
@@ -128,6 +128,16 @@
     </sequential>
   </target>
 
+  <!-- TODO: in the future, we don't need to actually put
+       jars in the lib/ folders, but can just put in classpath.
+       only packaging tasks really need that (and could do it
+       under build/ directories) -->
+  <target name="clean-jars" description="Clean local jars">
+     <delete>
+       <fileset dir="." includes="**/*.jar"/>
+     </delete>
+  </target>
+
   <target name="ivy-bootstrap">
     <subant target="ivy-bootstrap" inheritall="false" failonerror="true">
       <fileset dir="lucene" includes="build.xml" />