Hi, I am new to Neo4j and would like to try it out using spring-data. I have a basic maven project and am following examples from here: https://github.com/SpringSource/spri...mples/cineasts

The build fails trying to Autowire Neo4jOperations:

@Autowired private Neo4jOperations template;

Maven output:
No matching bean of type [org.springframework.data.neo4j.template.Neo4jOpera tions] found for dependency: expected at least 1 bean which qualifies as autowire candidate for this dependency. Dependency annotations: {@org.springframework.beans.factory.annotation.Aut owired(required=true)}

I have these dependencies in pom.xml relating to Neo4j:
Code:
<dependency>
	<groupId>org.springframework.data</groupId>
	<artifactId>spring-data-neo4j</artifactId>
	<version>2.0.0.RC1</version>
</dependency>
<dependency>
	<groupId>org.neo4j</groupId>
	<artifactId>neo4j</artifactId>
	<version>1.6.M02</version>
</dependency>
Not sure where to go from here. Any feedback greatly appreciated!

Markus