Where can I find the neo4j jdbc driver?
4 answers
2.1.4 is the latest in the maven repository: https://maven-repository.com/artifact/org.neo4j/neo4j-jdbc
Download from https://maven-repository.com/artifact/org.neo4j/neo4j-jdbc or use as maven dependency:
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-jdbc</artifactId>
<version>2.1.4</version>
</dependency
FYI this version works fine with Neo4j 2.1.5 (I use it) but haven't tried it against 2.1.6
Update for Neo4j 2.3
Snapshot available:
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-jdbc</artifactId>
<version>2.3-SNAPSHOT</version>
</dependency>
<repository>
<id>neo4j-public</id>
<url>http://m2.neo4j.org/content/groups/public</url>
<releases>
<enabled>true</enabled>
<checksumPolicy>warn</checksumPolicy>
</releases>
</repository>
+5
source to share
I decided to use this dependency to solve this problem:
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-jdbc</artifactId>
<version>2.0.1-SNAPSHOT-jar-with</version>
<classifier>dependencies</classifier>
</dependency>
Please note that this is rather an old version of neo4j.
0
source to share
Version 2.1.4 works but also adds the repository to the pom.xml
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-jdbc</artifactId>
<version>2.1.4</version>
</dependency>
<repositories>
<repository>
<id>neo4j-public</id>
<url>http://m2.neo4j.org/content/groups/public</url>
<releases>
<enabled>true</enabled>
<checksumPolicy>warn</checksumPolicy>
</releases>
</repository>
</repositories>
0
source to share