BartoszMiller
BartoszMiller

Reputation: 1227

spring-hateoas 0.8.0.RELEASE compatibility with Spring 4

I'm using 0.8.0.RELEASE version of spring-hateos, which has spring libraries (spring-core and spring-webmvc) in version 3.2.3.RELEASE as a compile time dependencies.

However, in runtime I would like to use spring-core and spring-webmvc in version 4.2.2.RELEASE.

Does anyone know if this version of spring-hateos is compatible with latest version of spring libraries?

Upvotes: 6

Views: 497

Answers (2)

reos
reos

Reputation: 8334

It's compatible

org.springframework:spring-core 3.2.3.RELEASE (Required ) 4.2.3.RELEASE (Newest) org.springframework:spring-webmvc 3.2.3.RELEASE (Required ) 4.2.3.RELEASE (Newest)

You can see here

https://www.versioneye.com/java/org.springframework.hateoas:spring-hateoas/0.8.0.RELEASE

Upvotes: 0

Bnrdo
Bnrdo

Reputation: 5474

Looking at the changelog, support for Spring 4.0.x is started on version 0.17.0.RELEASE

Changes in version 0.17.0.RELEASE (2015-03-05)
- #311 - Upgrade to latest Spring 4.0.x.
- #304 - Add build profiles for Spring 4.x.

Upvotes: 2

Related Questions