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 2015/08/12 09:59:07 UTC

svn commit: r1695438 - in /lucene/dev/branches/branch_5x: dev-tools/eclipse/dot.classpath.xsl lucene/CHANGES.txt

Author: dweiss
Date: Wed Aug 12 07:59:06 2015
New Revision: 1695438

URL: http://svn.apache.org/r1695438
Log:
LUCENE-6174: Improve 'ant eclipse' to select right JRE for building.

Modified:
    lucene/dev/branches/branch_5x/dev-tools/eclipse/dot.classpath.xsl
    lucene/dev/branches/branch_5x/lucene/CHANGES.txt

Modified: lucene/dev/branches/branch_5x/dev-tools/eclipse/dot.classpath.xsl
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_5x/dev-tools/eclipse/dot.classpath.xsl?rev=1695438&r1=1695437&r2=1695438&view=diff
==============================================================================
--- lucene/dev/branches/branch_5x/dev-tools/eclipse/dot.classpath.xsl (original)
+++ lucene/dev/branches/branch_5x/dev-tools/eclipse/dot.classpath.xsl Wed Aug 12 07:59:06 2015
@@ -57,7 +57,7 @@
       
       <!-- the main resources folder is here (see above), so it's listed after the test-framework resources, making preflex-override work: -->
       <classpathentry kind="output" path="eclipse-build/main"/>
-      <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
+      <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
       
       <xsl:for-each select="str:split($eclipse.fileset.libs,'|')">
         <!-- sort the jars by path name: -->

Modified: lucene/dev/branches/branch_5x/lucene/CHANGES.txt
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_5x/lucene/CHANGES.txt?rev=1695438&r1=1695437&r2=1695438&view=diff
==============================================================================
--- lucene/dev/branches/branch_5x/lucene/CHANGES.txt (original)
+++ lucene/dev/branches/branch_5x/lucene/CHANGES.txt Wed Aug 12 07:59:06 2015
@@ -24,6 +24,9 @@ Optimizations
 
 Other
 
+* LUCENE-6174: Improve "ant eclipse" to select right JRE for building.
+  (Uwe Schindler, Dawid Weiss)
+
 * LUCENE-6417: Upgrade ANTLR used in expressions module to version 4.5.
   (Jack Conradson, Uwe Schindler)