noi.m
noi.m

Reputation: 3132

Which version of Spring Data MongoDB is compatible with Spring 3.2.2.RELEASE?

I am currently using mongo-java-driver 3.0.1. I am trying to use Spring Data Mongodb with Spring 3.2.2.RELEASE. Is there any way i can find out which version of Spring Data MongoDB should i use, in order to be compatible with Spring 3.2.2.RELEASE? Some kind of compatibility matrix.

Upvotes: 5

Views: 10932

Answers (2)

Tomas Zubrik
Tomas Zubrik

Reputation: 497

Try define your spring data mongodb dependency at the last of the dependency tree in your pom

Upvotes: 1

Ohad Bruker
Ohad Bruker

Reputation: 524

You can check the compiled dependencies of Spring Data Mongodb. Here are the most compatible options for Spring 3.2.2.RELEASE:

spring-data-mongodb 1.5.6.RELEASE depends on spring-core 3.2.22.RELEASE
spring-data-mongodb 1.4.3.RELEASE depends on spring-core 3.2.8.RELEASE

Upvotes: 0

Related Questions