You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by gs...@apache.org on 2011/03/26 13:29:22 UTC

svn commit: r1085710 - in /lucene/dev/branches/lucene_solr_3_1: README.txt build.xml

Author: gsingers
Date: Sat Mar 26 12:29:21 2011
New Revision: 1085710

URL: http://svn.apache.org/viewvc?rev=1085710&view=rev
Log:
address the dev-tools packaging issue temporarily

Modified:
    lucene/dev/branches/lucene_solr_3_1/README.txt
    lucene/dev/branches/lucene_solr_3_1/build.xml

Modified: lucene/dev/branches/lucene_solr_3_1/README.txt
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene_solr_3_1/README.txt?rev=1085710&r1=1085709&r2=1085710&view=diff
==============================================================================
--- lucene/dev/branches/lucene_solr_3_1/README.txt (original)
+++ lucene/dev/branches/lucene_solr_3_1/README.txt Sat Mar 26 12:29:21 2011
@@ -5,7 +5,7 @@ solr/ is a search engine server that use
 
 To compile the sources run 'ant compile'
 To run all the tests run 'ant test'
-To setup your ide run 'ant idea' or 'ant eclipse'
+To setup your ide run 'ant idea' or 'ant eclipse' (only available with SVN checkouts via the dev-tools)
 
 For more information on how to contribute see:
 http://wiki.apache.org/lucene-java/HowToContribute

Modified: lucene/dev/branches/lucene_solr_3_1/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/lucene_solr_3_1/build.xml?rev=1085710&r1=1085709&r2=1085710&view=diff
==============================================================================
--- lucene/dev/branches/lucene_solr_3_1/build.xml (original)
+++ lucene/dev/branches/lucene_solr_3_1/build.xml Sat Mar 26 12:29:21 2011
@@ -64,7 +64,7 @@
     </sequential>
   </target>
 
-  <target name="eclipse" description="Setup Eclipse configuration">
+  <target name="eclipse" description="Setup Eclipse configuration -- Only available with SVN checkout">
     <copy file="dev-tools/eclipse/dot.classpath" tofile=".classpath" overwrite="true"/>
     <mkdir dir=".settings"/>
     <copy file="dev-tools/eclipse/resources.prefs" 
@@ -82,7 +82,7 @@
     </echo>
   </target>
 
-  <target name="idea" description="Setup IntelliJ IDEA configuration">
+  <target name="idea" description="Setup IntelliJ IDEA configuration -- Only available with SVN checkout">
     <copy todir=".">
       <fileset dir="dev-tools/idea"/>
     </copy>
@@ -100,7 +100,7 @@
     </echo>
   </target>
   <target name="clean-idea"
-          description="Removes all IntelliJ IDEA configuration files">
+          description="Removes all IntelliJ IDEA configuration files -- Only available with SVN checkout">
     <delete dir=".idea" failonerror="true"/>
     <delete failonerror="true">
       <fileset dir="." includes="*.iml,*.ipr,*.iws"/>