diff --git a/pom.xml b/pom.xml
index 314844d..6d1f85e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,7 +3,7 @@
4.0.0
org.neo4j
neo4j-tinkerpop-api-impl
- 0.2-2.2.5
+ 0.3-2.3.0
jar
Neo4j Tinkerpop API Implementation
Apache Licensed Neo4j Tinkerpop API Implementation
@@ -20,7 +20,7 @@
http://github.com/neo4j-contrib/neo4j-tinkerpop-api-impl
- 2.2.5
+ 2.3.0
diff --git a/src/main/java/org/neo4j/tinkerpop/api/impl/Neo4jGraphAPIImpl.java b/src/main/java/org/neo4j/tinkerpop/api/impl/Neo4jGraphAPIImpl.java
index 2d5aea5..e05d6fc 100644
--- a/src/main/java/org/neo4j/tinkerpop/api/impl/Neo4jGraphAPIImpl.java
+++ b/src/main/java/org/neo4j/tinkerpop/api/impl/Neo4jGraphAPIImpl.java
@@ -23,8 +23,8 @@
import org.neo4j.graphdb.schema.IndexDefinition;
import org.neo4j.helpers.collection.IteratorWrapper;
import org.neo4j.kernel.GraphDatabaseAPI;
-import org.neo4j.kernel.impl.core.GraphPropertiesImpl;
import org.neo4j.kernel.impl.core.NodeManager;
+import org.neo4j.kernel.impl.core.GraphProperties;
import org.neo4j.tinkerpop.api.Neo4jGraphAPI;
import org.neo4j.tinkerpop.api.Neo4jNode;
import org.neo4j.tinkerpop.api.Neo4jRelationship;
@@ -38,7 +38,7 @@
public class Neo4jGraphAPIImpl implements Neo4jGraphAPI {
private final GraphDatabaseService db;
- private final GraphPropertiesImpl graphProps;
+ private final GraphProperties graphProps;
public Neo4jGraphAPIImpl(GraphDatabaseService db) {
this.db = db;