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?
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.
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.
Spring MVC Maven dependency is the main dependency you will use when you start to work on Web projects with Spring.
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>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With