Stijn Geukens
Stijn Geukens

Reputation: 15628

Spring 3.1.0.RC1 - which maven repository?

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?

Upvotes: 3

Views: 3619

Answers (3)

jtonic
jtonic

Reputation: 639

I really like the repository browser at https://repo.springsource.org/webapp/artifactshome.html

Regards.

Upvotes: 0

Roadrunner
Roadrunner

Reputation: 6811

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>

Upvotes: 8

Barry Pitman
Barry Pitman

Reputation: 3127

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>

Upvotes: 2

Related Questions