views:

127

answers:

2

The link quoted on the EclipseLink/Maven wiki ends on an Error 403 page on switch.ch. If you are redirected to a better mirror then that would already be the answer.

If not: where did the repository go to? Searching the net only reveals that EclipseLink/Maven hat a history of typos on there Wiki-Page. However all the corrected links I found end on error pages as well.

+2  A: 

The URL from that page

works for me and redirects to

However, inside a pom.xml, I had to escape the &:

  <repositories>
    <repository>
      <id>eclipselink</id>
      <url>http://www.eclipse.org/downloads/download.php?r=1&amp;amp;nf=1&amp;amp;file=/rt/eclipselink/maven.repo/&lt;/url&gt;
    </repository>
  </repositories>
Pascal Thivent
Oops, didn't see you there. +1 for the working `pom.xml`
VonC
Thanks for the POM hint - I have seen that before in my research - but one can't point that out often enough.
Martin
+2  A: 

The only link I see is:

http://www.eclipse.org/downloads/download.php?r=1&amp;nf=1&amp;file=/rt/eclipselink/maven.repo

and it seems to works just fine, redirecting it to

http://www.gtlib.gatech.edu/pub/eclipse/rt/eclipselink/maven.repo/

alt text

VonC
+1 for another mirror and the screenshot :)
Pascal Thivent
Thanks for mirror. It seems that this problem is indeed not a problem with EclipseLink/Maven but with the switch.ch mirror.
Martin