1

Is there a version matrix for Spring framework core with Spring Data Neo4j?

I am looking for the (least) version of Spring framework core that is compatible (should be used) with Spring Data Neo4j 2.0.0.

Saket
  • 45,521
  • 12
  • 59
  • 79

1 Answers1

0

If you use maven, and add just spring-data-neo4j, it will fetch all dependencies automatically. Even if you don't use maven, you can check the declared dependencies. From what I see in the pom file, it doesn't declare a specific version, which means it should be compatible with the latest version.

Bozho
  • 588,226
  • 146
  • 1,060
  • 1,140
  • I thought so, but I have been facing numerous issues with 3.1.x. While everything works in 3.0.6. Reported @ http://forum.springsource.org/showthread.php?116896-Spring-3.1.x-issues-with-Neo4J – Saket Nov 05 '11 at 13:00
  • @Saket - I guess that would be because 3.1 is still RC. The latest release is 3.0.6. – Bozho Nov 05 '11 at 13:11
  • i think so too...but am sure people wouldn't expect RC to be as unstable as this (functionally)! – Saket Nov 05 '11 at 17:39
  • There have been some internal changes in 3.1. in how beans are created especially with Java-Config and @TestContexts, we're still investigating this. – Michael Hunger Nov 07 '11 at 00:04
  • @MichaelHunger, any ideas when can I expect this to be resolved? I have been (unhappily) forced to revert over to 3.0.6 due to this. Also, do you mind taking up the post on the Spring forum - http://forum.springsource.org/showthread.php?116896-Spring-3.1.x-issues-with-Neo4J - and track that as a bug (if one does not exist) – Saket Nov 08 '11 at 03:54
  • I raised a JIRA issue (https://jira.springsource.org/browse/SPR-8824) with the Spring Core Team, who will look into this for Spring 3.1.RC2. – Michael Hunger Nov 09 '11 at 08:50
  • I also added a test project for this to the SpringSource issues github project: https://github.com/jexp/spring-framework-issues/commit/fd9731670686e6c3423f1a409ca81b2c8709ac60, they still have to pull it. – Michael Hunger Nov 09 '11 at 08:52
  • It has been resolved for the next RC2 of Spring Framework (or you use their snapshot build), see https://jira.springsource.org/browse/SPR-8824 – Michael Hunger Nov 18 '11 at 05:00