You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tuscany.apache.org by Raymond Feng <en...@gmail.com> on 2007/01/20 00:20:46 UTC

Adding mirrors to your settings.xml to override failing maven repos

Hi,

We have been seeing failures to donwload EMF artifacts from maven2 repo on 
the eclipse site. I found a way to work around this issue (basically for any 
failing repositories) by configuring a mirror in 
<user.home>/.m2/settings.xml:

<?xml version="1.0" encoding="UTF-8"?>
<settings>
 <mirrors>
    <mirror>
      <id>osuosl.org</id>
       <!-- Oregon State University Open Source Lab -->
      <url>http://ftp.osuosl.org/pub/eclipse/tools/emf/maven2</url>
      <mirrorOf>eclipse.emf</mirrorOf>
    </mirror>
  </mirrors>
</settings>

You can find more information at 
http://maven.apache.org/guides/mini/guide-mirror-settings.html.

Thanks,
Raymond 


---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-dev-help@ws.apache.org