Spring 3.1.0.RC1 - 哪个 Maven 存储库?

发布于 2024-12-09 08:17:21 字数 480 浏览 0 评论 0原文

springsource 所示,Spring 3.1.0.RC1 刚刚可供下载。在同一个网站上,据说可以使用 http://maven.springframework.org/milestone。我不确定这个 url 应该是什么,但它似乎不是一个(有效的)maven 存储库。

另外, Spring 存储库 尚未包含此内容版本。

有人知道 Spring 3.1.0.RC1 是否可用以及在哪个 Maven 存储库中?

As indicated on springsource Spring 3.1.0.RC1 has just been made available for download. On the same site it is said that it is available from maven using http://maven.springframework.org/milestone. I'm not sure what this url is supposed to be but it does not appear to be a (valid) maven repository.

Also, the Spring repository does not yet contain this version.

Anyone know if Spring 3.1.0.RC1 is available and in which maven repository?

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

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

发布评论

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

评论(3

毁虫ゝ 2024-12-16 08:17:21

http://maven.springframework.org/milestone 使用 HTTP 浏览器可能看起来无效,但它可以工作。

只要这样做:

<dependencies>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-core</artifactId>
        <version>3.1.0.RC1</version>
    </dependency>
</dependencies>

<repositories>
    <repository>
        <id>springsource-milestone</id>
        <url>http://maven.springframework.org/milestone</url>
    </repository>
</repositories>

The http://maven.springframework.org/milestone may not seem valid using HTTP browser, but it works.

Just do:

<dependencies>
    <dependency>
        <groupId>org.springframework</groupId>
        <artifactId>spring-core</artifactId>
        <version>3.1.0.RC1</version>
    </dependency>
</dependencies>

<repositories>
    <repository>
        <id>springsource-milestone</id>
        <url>http://maven.springframework.org/milestone</url>
    </repository>
</repositories>
南笙 2024-12-16 08:17:21

在今年春天的博客文章中,他们说“里程碑和快照存储库都托管在 Amazon 的 S3 服务上,因此目录结构不是人类可读的。要以人类可读的格式查看存储库,请使用 S3Browse 实用程序。

我没有尝试过。它我自己还没有,但这应该有效:

<repository>
   <id>spring-milestone</id>
   <name>Spring Portfolio Milestone Repository</name>
   <url>http://s3.amazonaws.com/maven.springframework.org/milestone</url>
</repository>

On this Spring blog post they say that "The milestone and snapshot repositories are both hosted on Amazon's S3 service and as such the directory structure is not human-readable. To view the repositories in a human-readable format, use the S3Browse utility."

I haven't tried it myself yet, but this should work:

<repository>
   <id>spring-milestone</id>
   <name>Spring Portfolio Milestone Repository</name>
   <url>http://s3.amazonaws.com/maven.springframework.org/milestone</url>
</repository>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文