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/06/07 22:02:27 UTC

svn commit: r1347769 - in /lucene/dev/trunk: build.xml lucene/common-build.xml

Author: rmuir
Date: Thu Jun  7 20:02:27 2012
New Revision: 1347769

URL: http://svn.apache.org/viewvc?rev=1347769&view=rev
Log:
LUCENE-4115: backing out this change for dweiss (he is on mobile) until we dig on windows

Modified:
    lucene/dev/trunk/build.xml
    lucene/dev/trunk/lucene/common-build.xml

Modified: lucene/dev/trunk/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/build.xml?rev=1347769&r1=1347768&r2=1347769&view=diff
==============================================================================
--- lucene/dev/trunk/build.xml (original)
+++ lucene/dev/trunk/build.xml Thu Jun  7 20:02:27 2012
@@ -65,7 +65,7 @@
     </subant></sequential>
   </target>
 
-  <target name="resolve" depends="clean-jars" description="Resolves all dependencies">
+  <target name="resolve" description="Resolves all dependencies">
     <sequential><subant target="resolve" inheritall="false" failonerror="true">
         <fileset dir="lucene" includes="build.xml" />
         <fileset dir="solr" includes="build.xml" />
@@ -116,7 +116,7 @@
     </sequential>
   </target>
 
-  <target name="eclipse" depends="clean-jars, resolve" description="Setup Eclipse configuration">
+  <target name="eclipse" description="Setup Eclipse configuration" depends="resolve">
     <copy file="dev-tools/eclipse/dot.project" tofile=".project" overwrite="false"/>
     <copy file="dev-tools/eclipse/dot.classpath" tofile=".classpath" overwrite="true"/>
     <mkdir dir=".settings"/>
@@ -129,7 +129,7 @@
     </echo>
   </target>
 
-  <target name="idea" depends="clean-jars, resolve" description="Setup IntelliJ IDEA configuration">
+  <target name="idea" description="Setup IntelliJ IDEA configuration" depends="resolve">
     <copy todir=".">
       <fileset dir="dev-tools/idea"/>
     </copy>
@@ -138,7 +138,6 @@
       File | Project Structure | Project | Project SDK.
     </echo>
   </target>
-
   <target name="clean-idea"
           description="Removes all IntelliJ IDEA configuration files">
     <delete dir=".idea" failonerror="true"/>
@@ -149,7 +148,7 @@
     </delete>
   </target>
 
-  <target name="clean" depends="clean-jars" description="Clean Lucene and Solr">
+  <target name="clean" description="Clean Lucene and Solr">
     <delete dir="dist" />
     <sequential>
       <subant target="clean" inheritall="false" failonerror="true">

Modified: lucene/dev/trunk/lucene/common-build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/common-build.xml?rev=1347769&r1=1347768&r2=1347769&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/common-build.xml (original)
+++ lucene/dev/trunk/lucene/common-build.xml Thu Jun  7 20:02:27 2012
@@ -283,7 +283,6 @@
   <target name="resolve" depends="ivy-availability-check,ivy-fail,ivy-configure">
     <!-- todo, make this a property or something. 
          only special cases need bundles -->
-    <delete><fileset dir="." includes="**/*.jar"/></delete>         
     <ivy:retrieve type="jar,bundle" log="download-only" 
                   conf="${ivy.default.configuration}"/>
   </target>