diff --git a/developer_notes.html b/developer_notes.html
index 5c05a801e..560c9040c 100644
--- a/developer_notes.html
+++ b/developer_notes.html
@@ -109,7 +109,7 @@ try {
@Indexed([fulltext=true],[indexName=name]) Auto-Indexing
@RelatedTo([direction=Direction], [type=TYPE]) define type and direction of relationship on Entity, Iterable<E>, Set<E> fields
@RelatedToVia([direction=Direction], [type=TYPE]) like @RelatedTo, but targets Relationship-Entities
- @Query(query, [type=QueryType]) computed field, executes graph query in Cypher or Gremlin
+ @Query(query, [type=QueryType]) computed field, executes graph query in Cypher
@GraphTraversal(traversal=~TraversalBuilder.class, [elementClass=Person.class]) computed field, executes traversal starting from entity-node
@@ -160,7 +160,7 @@ interface MovieRepository extends GraphRepository<Movie> {
Neo4jTemplate
- convenience methods for graph operations, transaction and exception handling
- - index lookups, cypher and gremlin queries, traversal execution with fluent result converter API
+ - index lookups, cypher queries, traversal execution with fluent result converter API
- preconfigured and customizable conversion of results to a variety of types
diff --git a/pom.xml b/pom.xml
index 73810e139..d6e59ca76 100644
--- a/pom.xml
+++ b/pom.xml
@@ -42,9 +42,6 @@
0.12-neo4j-2.0.0-M06
0.7.1-neo4j-2.0.0-M06
-
1.2
-
1.5
-
1.5
2.0.0-M06
diff --git a/spring-data-neo4j-aspects/pom.xml b/spring-data-neo4j-aspects/pom.xml
index a1001fdf7..9f225d975 100644
--- a/spring-data-neo4j-aspects/pom.xml
+++ b/spring-data-neo4j-aspects/pom.xml
@@ -147,33 +147,6 @@
-
-
-
- com.tinkerpop.blueprints
- blueprints-core
- ${blueprints.version}
- test
- true
-
-
- com.tinkerpop.blueprints
- blueprints-neo4j-graph
- ${blueprints.version}
-
-
- org.neo4j
- neo4j-management
-
-
- org.neo4j
- neo4j
-
-
- test
- true
-
-
diff --git a/spring-data-neo4j-aspects/src/test/java/org/springframework/data/neo4j/aspects/PersonRepository.java b/spring-data-neo4j-aspects/src/test/java/org/springframework/data/neo4j/aspects/PersonRepository.java
index baa8ddf24..b19c1171d 100644
--- a/spring-data-neo4j-aspects/src/test/java/org/springframework/data/neo4j/aspects/PersonRepository.java
+++ b/spring-data-neo4j-aspects/src/test/java/org/springframework/data/neo4j/aspects/PersonRepository.java
@@ -36,9 +36,6 @@ public interface PersonRepository extends GraphRepository, NamedIndexRep
@Query("start team=node({p_team}) match (team)-[:persons]->(member) return member")
Iterable findAllTeamMembers(@Param("p_team") Group team);
- @Query(value = "g.v(team).out('persons')", type = QueryType.Gremlin)
- Iterable findAllTeamMembersGremlin(@Param("team") Group team);
-
@Query("start team=node({p_team}) match (team)-[:persons]->(member) return member.name,member.age")
Iterable