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 2012/09/07 22:25:18 UTC

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

Author: uschindler
Date: Fri Sep  7 20:25:18 2012
New Revision: 1382157

URL: http://svn.apache.org/viewvc?rev=1382157&view=rev
Log:
Merged revision(s) 1382154 from lucene/dev/trunk:
Disable for the dependency checking the snapshot repository explicitely, although it might be enabled in the pom.xml. So we have all flexibility

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=1382157&r1=1382156&r2=1382157&view=diff
==============================================================================
--- lucene/dev/branches/branch_4x/lucene/common-build.xml (original)
+++ lucene/dev/branches/branch_4x/lucene/common-build.xml Fri Sep  7 20:25:18 2012
@@ -470,8 +470,9 @@
     <sequential>
       <artifact:dependencies filesetId="maven.fileset" useScope="test" type="jar">
         <artifact:pom file="@{pom.xml}"/>
-        <remoteRepository id="apache.snapshots" url="${m2.repository.url}">
-          <snapshots enabled="true" updatePolicy="always"/>
+        <!-- disable completely, so this has no chance to download any updates from anywhere: -->
+        <remoteRepository id="apache.snapshots" url="foobar://disabled/">
+          <snapshots enabled="false"/>
           <releases enabled="false"/>
         </remoteRepository>
       </artifact:dependencies>