In Maven 2, Is it possible to specify a mirror for everything, but allow for failover to direct repo
- by Justin Searls
I understand that part of the appeal of setting up a Maven mirror, such as the following:
<mirror>
<id>nexus</id>
<name>Maven Repository</name>
<mirrorOf>*</mirrorOf>
<url>http://server:8081/nexus/content/groups/public</url>
</mirror>
... is that the documentation states, "You…