blueprints-dex-graph
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.tinkerpop.blueprints</groupId> <artifactId>blueprints-dex-graph</artifactId> <version>2.4.0</version> </dependency>
<?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.4.0</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>blueprints-dex-graph</artifactId> <name>Blueprints-DexGraph</name> <description>Blueprints property graph implementation for the DEX graph database</description> <dependencies> <dependency> <groupId>com.tinkerpop.blueprints</groupId> <artifactId>blueprints-core</artifactId> <version>${blueprints.version}</version> </dependency> <dependency> <groupId>com.sparsity</groupId> <artifactId>dexjava</artifactId> <version>4.8.2</version> </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>