Is there a Maven repository for Spring 4?

混江龙づ霸主 提交于 2019-12-10 01:45:52

问题


I'm looking for Spring 4.0 M1, for use with Java 8. According to this issue there should be a build, can't find however. Ideally there would be a Maven repo, but I can't even find a regular download?


回答1:


As of December 12, 2013, Spring 4.0.0.RELEASE is in Maven Central.

You can add this to your pom.xml to bring it in:

<dependency>
  <groupId>org.springframework</groupId>
  <artifactId>spring-core</artifactId>
  <version>4.0.0.RELEASE</version>
</dependency>



回答2:


Quoting Paul Grays answer - Spring 4 is already in Maven central so you just need to add this dependency

<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-core</artifactId>
    <version>4.0.0.RELEASE</version>
</dependency>

Older asnwer

I think you need to add Spring repository to your pom.xml

<repository>
    <id>com.springsource.repository.maven.snapshot</id>
    <url>http://maven.springframework.org/snapshot/</url>
    <snapshots>
       <enabled>true</enabled>
    </snapshots>
</repository>

Then you can add your Spring module with following version 4.0.0.BUILD-SNAPSHOT. So for example

<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-aop</artifactId>
    <version>4.0.0.BUILD-SNAPSHOT</version>
</dependency>



回答3:


It is now released, so it can be found in standard repo: http://search.maven.org/#artifactdetails%7Corg.springframework%7Cspring-framework-bom%7C4.0.0.RELEASE%7Cpom




回答4:


When I look at the Spring Framework summary page it states that 4.0 M1 is not released yet - it is scheduled for Tuesday, 2013-05-14



来源:https://stackoverflow.com/questions/16506508/is-there-a-maven-repository-for-spring-4

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!