Blueprints-Neo4jGraph.
Blueprints property graph implementation for the Neo4j graph database.
Here is the list of declaration for blueprints-neo4j-graph. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>com.tinkerpop.blueprints</groupId> <artifactId>blueprints-neo4j-graph</artifactId> <version>2.3.0</version> </dependency>
If you think this Maven repository POM file listing for blueprints-neo4j-graph is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The following packages are defined in the blueprints-neo4j-graph-2.3.0.jar
com.tinkerpop.blueprints.impls.neo4j com.tinkerpop.blueprints.impls.neo4j.batch
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.tinkerpop.blueprints</groupId> <artifactId>blueprints</artifactId> <version>2.3.0</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>blueprints-neo4j-graph</artifactId> <name>Blueprints-Neo4jGraph</name> <description>Blueprints property graph implementation for the Neo4j graph database</description> <dependencies> <dependency> <groupId>com.tinkerpop.blueprints</groupId> <artifactId>blueprints-core</artifactId> <version>${blueprints.version}</version> </dependency> <dependency> <groupId>org.neo4j</groupId> <artifactId>neo4j</artifactId> <version>1.9.M05</version> <type>pom</type> </dependency> <dependency> <groupId>org.neo4j</groupId> <artifactId>neo4j-ha</artifactId> <version>1.9.M05</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.neo4j</groupId> <artifactId>neo4j-management</artifactId> <version>1.9.M05</version> <scope>compile</scope> </dependency> <dependency> <groupId>com.tinkerpop.blueprints</groupId> <artifactId>blueprints-test</artifactId> <version>${blueprints.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <directory>${basedir}/target</directory> <finalName>${project.artifactId}-${project.version}</finalName> <resources> <resource> <directory>${basedir}/src/main/resources </directory> </resource> </resources> <testResources> <testResource> <directory>${basedir}/src/test/resources </directory> </testResource> </testResources> </build> </project>