如何使用nexus代理Spring里程碑回购

时间:2010-10-06 05:17:26

标签: java spring maven-2 nexus

我想使用nexus代理Spring里程碑存储库。

任何人都可以告诉我使用正确的网址。

2 个答案:

答案 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:

https://www.alphabot.com/security/blog/2020/java/Your-Java-builds-might-break-starting-January-13th.html