我想使用nexus代理Spring里程碑存储库。
任何人都可以告诉我使用正确的网址。
答案 0 :(得分:2)
不确定。就是这样:
<repository>
<id>org.springframework.maven.milestone</id>
<name>Maven Central Compatible Spring Milestone Repository</name>
<url>http:// maven.springframework.org/milestone</url>
</repository>
供参考,请参阅此博文: Obtaining Spring 3 Artifacts with Maven
答案 1 :(得分:1)
Sean的回答很好,但是您应该尝试使用https
,因为对我来说,http
给出了403:
<repository>
<id>org.springframework.maven.milestone</id>
<name>Maven Central Compatible Spring Milestone Repository</name>
<url>https://maven.springframework.org/milestone</url>
</repository>
所有主要的Maven仓库都从HTTP迁移到HTTPS: