Skip to content

Commit

Permalink
Upgrade to Neo4j 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jexp committed Oct 21, 2015
1 parent 59ca22e commit 06692a4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-tinkerpop-api-impl</artifactId>
<version>0.2-2.2.5</version>
<version>0.3-2.3.0</version>
<packaging>jar</packaging>
<name>Neo4j Tinkerpop API Implementation</name>
<description>Apache Licensed Neo4j Tinkerpop API Implementation</description>
Expand All @@ -20,7 +20,7 @@

<url>http://github.com/neo4j-contrib/neo4j-tinkerpop-api-impl</url>
<properties>
<neo4j.version>2.2.5</neo4j.version>
<neo4j.version>2.3.0</neo4j.version>
</properties>


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;
Expand Down

0 comments on commit 06692a4

Please sign in to comment.