mirror of https://github.com/apache/maven.git
MNG-3974 - stop on first mirror pattern match (fix to handle repeated entires)
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@733071 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
6034e26622
commit
9c7e082906
|
@ -1109,7 +1109,11 @@ public class DefaultWagonManager
|
|||
|
||||
ArtifactRepository mirror = new DefaultArtifactRepository( id, url, null );
|
||||
|
||||
mirrors.put( mirrorOf, mirror );
|
||||
//to preserve first wins, don't add repeated mirrors.
|
||||
if (!mirrors.containsKey( mirrorOf ))
|
||||
{
|
||||
mirrors.put( mirrorOf, mirror );
|
||||
}
|
||||
}
|
||||
|
||||
public void setOnline( boolean online )
|
||||
|
|
|
@ -585,6 +585,8 @@ public class DefaultWagonManagerTest
|
|||
//exact matches win first
|
||||
wagonManager.addMirror( "a2", "a,b", "http://a2" );
|
||||
wagonManager.addMirror( "a", "a", "http://a" );
|
||||
//make sure repeated entries are skipped
|
||||
wagonManager.addMirror( "a", "a", "http://a3" );
|
||||
|
||||
wagonManager.addMirror( "b", "b", "http://b" );
|
||||
wagonManager.addMirror( "c", "d,e", "http://de" );
|
||||
|
|
Loading…
Reference in New Issue