Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a Maven repository for Spring 4?

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?

like image 645
Nicolas Mommaerts Avatar asked May 12 '13 10:05

Nicolas Mommaerts


People also ask

Can we use Maven with Spring?

Basic Spring Dependencies With Maven Spring is designed to be highly modular – using one part of Spring should not and does not require another. For example, the basic Spring Context can be without the Persistence or the MVC Spring libraries.

Does Spring need Maven?

Even though you can use Spring without using Maven, there are many reasons to recommend its use to Spring developers. In this post I'll show you how to get started using Maven, and how to use it successfully with Spring libraries, repositories and tooling like SpringSource Tool Suite and Spring Roo.

What is Spring core Maven?

Spring MVC Maven dependency is the main dependency you will use when you start to work on Web projects with Spring.


1 Answers

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>
like image 55
Paul Gray Avatar answered Sep 18 '22 20:09

Paul Gray