o leave repository ids alone for now.

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@750570 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2009-03-05 20:05:00 +00:00
parent b9f9244f5f
commit 2a68738178
1 changed files with 4 additions and 1 deletions

View File

@ -102,7 +102,10 @@ public class DefaultMirrorBuilder
{
// We basically just want to take the URL
repository.setUrl( mirror.getUrl() );
repository.setId( repository.getId() + "-" + mirror.getId() );
// I would like a mirrored repository to be visually different but we'll put another field
// in the repository as changing the ID hoses up authentication.
//repository.setId( repository.getId() + "-" + mirror.getId() );
}
}
}