vote up 6 vote down star

Is there a public Maven repository that contains spring-core 3 yet?

I can find 2.5.4 all day long but not 3. If there answer is yes, please include the location in the answer.

flag

1 Answer

vote up 10 vote down check

You can get the milestones and release candidates from Spring's Maven repository. The repository is difficult to browse, but the files are there, e.g. the spring-core 3.0.0.RC1 pom

Here is an example repository declaration and dependency:

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

...
<dependencies>
  <dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-core</artifactId>
    <version>3.0.0.RC1</version>
  </dependency>
</dependencies>
link|flag
Yeah, that's it exactly, thanks Rich! I tried googling "spring maven repository" and before this question, there wasn't a single useful result. – stevedbrown Oct 8 at 19:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.