如何使用 Nexus 代理 Spring Milestone 存储库

发布于 2024-09-26 06:17:53 字数 58 浏览 5 评论 0原文

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

谁能告诉我要使用的正确网址。

I want to proxy the spring milestone repository using nexus.

Can anybody tell me the correct url to use.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

胡大本事 2024-10-03 06:17:53

当然。就是这样:

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

作为参考,请参阅此博客文章:
使用 Maven 获取 Spring 3 工件

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

放赐 2024-10-03 06:17:53

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

Answer from Sean is good, but you should try with https, because for me with http gives 403:

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

A move is being made from HTTP to HTTPS for all major maven repos:

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文