You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by us...@apache.org on 2014/09/05 18:32:09 UTC

svn commit: r1622735 - in /lucene/dev/branches/branch_4x: ./ lucene/ lucene/common-build.xml

Author: uschindler
Date: Fri Sep  5 16:32:08 2014
New Revision: 1622735

URL: http://svn.apache.org/r1622735
Log:
Merged revision(s) 1622734 from lucene/dev/trunk:
Use propertyresource instead string in common-build.xml

Modified:
    lucene/dev/branches/branch_4x/   (props changed)
    lucene/dev/branches/branch_4x/lucene/   (props changed)
    lucene/dev/branches/branch_4x/lucene/common-build.xml   (contents, props changed)

Modified: lucene/dev/branches/branch_4x/lucene/common-build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_4x/lucene/common-build.xml?rev=1622735&r1=1622734&r2=1622735&view=diff
==============================================================================
--- lucene/dev/branches/branch_4x/lucene/common-build.xml (original)
+++ lucene/dev/branches/branch_4x/lucene/common-build.xml Fri Sep  5 16:32:08 2014
@@ -310,7 +310,7 @@
 
   <!-- temporary for cleanup of java.specification.version, to be in format "x.y" -->
   <loadresource property="-cleaned.specification.version">
-    <string value="${java.specification.version}"/>
+    <propertyresource name="java.specification.version"/>
     <filterchain>
       <tokenfilter>
         <filetokenizer/>
@@ -896,7 +896,7 @@
 
         <!-- create a fileset pattern that matches ${tests.class}. -->
         <loadresource property="tests.explicitclass" quiet="true">
-          <string value="${tests.class}" />
+          <propertyresource name="tests.class" />
           <filterchain>
             <tokenfilter>
               <filetokenizer/>