You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ma...@apache.org on 2015/02/22 20:01:16 UTC

svn commit: r1661528 - in /lucene/dev/branches/branch_5x: ./ solr/ solr/server/ solr/server/build.xml

Author: markrmiller
Date: Sun Feb 22 19:01:15 2015
New Revision: 1661528

URL: http://svn.apache.org/r1661528
Log:
SOLR-7135: Allow the server build.xml 'sync-hack' target to by skipped by specifying a system property.

Modified:
    lucene/dev/branches/branch_5x/   (props changed)
    lucene/dev/branches/branch_5x/solr/   (props changed)
    lucene/dev/branches/branch_5x/solr/server/   (props changed)
    lucene/dev/branches/branch_5x/solr/server/build.xml

Modified: lucene/dev/branches/branch_5x/solr/server/build.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_5x/solr/server/build.xml?rev=1661528&r1=1661527&r2=1661528&view=diff
==============================================================================
--- lucene/dev/branches/branch_5x/solr/server/build.xml (original)
+++ lucene/dev/branches/branch_5x/solr/server/build.xml Sun Feb 22 19:01:15 2015
@@ -42,7 +42,7 @@
        and rename jetty-start-xxxxxxxxxxxxx.jar -> start.jar (not in lib/) ! 
 
        there is probably a cleaner way: but this ensure we have no garbage if jetty is upgraded -->
-  <target name="sync-hack">
+  <target name="sync-hack" unless="solr.skip.sync-hack">
     <delete failonerror="false">
       <fileset dir="lib" includes="*.jar"/>
     </delete>