views:

25

answers:

1

I want to proxy the spring milestone repository using nexus.

Can anybody tell me the correct url to use.

A: 

Sure. This is it:

<repository>
    <id>org.springframework.maven.milestone</id>
    <name>Maven Central Compatible Spring Milestone Repository</name>
    <url>http:// maven.springframework.org/milestone</url>
</repository>

For reference, see this blog post: Obtaining Spring 3 Artifacts with Maven

seanizer
Thanks! It seems to work, but why can't i browse the remote repository in nexus ?
Anthony
Because it's a non-browsable cloud server. But you should be able to build an index of it anyway. BTW, if you like my answer, please upvote and / or accept it.
seanizer