You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by sa...@apache.org on 2013/09/20 08:53:17 UTC

svn commit: r1524916 - in /lucene/dev/trunk: build.xml dev-tools/idea/.idea/misc.xml

Author: sarowe
Date: Fri Sep 20 06:53:16 2013
New Revision: 1524916

URL: http://svn.apache.org/r1524916
Log:
Intellij config: JDK setup: switch interpolation markers in dev-tools/idea/.idea/misc.xml to be well-formed (unlikely-to-be-used XML attribute 'subst.="idea.jdk"'), so that in-place users won't be yelled at by Intellij.  When IntelliJ starts up without this 'attribute' having been interpolated, it ignores and then removes the unknown XML attribute.

Modified:
    lucene/dev/trunk/build.xml
    lucene/dev/trunk/dev-tools/idea/.idea/misc.xml

Modified: lucene/dev/trunk/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/build.xml?rev=1524916&r1=1524915&r2=1524916&view=diff
==============================================================================
--- lucene/dev/trunk/build.xml (original)
+++ lucene/dev/trunk/build.xml Fri Sep 20 06:53:16 2013
@@ -247,7 +247,7 @@
     <property name="idea.jdk" value=""/>
     <copy todir=".">
       <fileset dir="dev-tools/idea"/>
-      <filterset begintoken="@" endtoken="@">
+      <filterset begintoken="subst.=&quot;" endtoken="&quot;">
         <filter token="idea.jdk" value="${idea.jdk}"/>
       </filterset>
     </copy>

Modified: lucene/dev/trunk/dev-tools/idea/.idea/misc.xml
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/dev-tools/idea/.idea/misc.xml?rev=1524916&r1=1524915&r2=1524916&view=diff
==============================================================================
--- lucene/dev/trunk/dev-tools/idea/.idea/misc.xml (original)
+++ lucene/dev/trunk/dev-tools/idea/.idea/misc.xml Fri Sep 20 06:53:16 2013
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <project version="4">
-  <component name="ProjectRootManager" version="2" languageLevel="JDK_1_7" @idea.jdk@ />
+  <component name="ProjectRootManager" version="2" languageLevel="JDK_1_7" subst.="idea.jdk" />
 </project>