Created
February 17, 2015 22:02
-
-
Save akhawaja/33b8770840ce3d296923 to your computer and use it in GitHub Desktop.
Maven pom.xml dependencies for OrientDB Graph Database
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<dependencies> | |
<dependency> | |
<groupId>com.tinkerpop.blueprints</groupId> | |
<artifactId>blueprints-core</artifactId> | |
<version>${blueprints.version}</version> | |
<exclusions> | |
<exclusion> | |
<artifactId>commons-logging</artifactId> | |
<groupId>commons-logging</groupId> | |
</exclusion> | |
<exclusion> | |
<artifactId>jackson-databind</artifactId> | |
<groupId>com.fasterxml.jackson.core</groupId> | |
</exclusion> | |
</exclusions> | |
</dependency> | |
<dependency> | |
<groupId>com.tinkerpop.rexster</groupId> | |
<artifactId>rexster-core</artifactId> | |
<version>${blueprints.version}</version> | |
<scope>provided</scope> | |
<exclusions> | |
<exclusion> | |
<artifactId>commons-logging</artifactId> | |
<groupId>commons-logging</groupId> | |
</exclusion> | |
</exclusions> | |
</dependency> | |
<dependency> | |
<groupId>com.orientechnologies</groupId> | |
<artifactId>orientdb-core</artifactId> | |
<version>${orientdb.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>com.orientechnologies</groupId> | |
<artifactId>orientdb-graphdb</artifactId> | |
<version>${orientdb.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>com.orientechnologies</groupId> | |
<artifactId>orientdb-enterprise</artifactId> | |
<version>${orientdb.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>com.orientechnologies</groupId> | |
<artifactId>orientdb-lucene</artifactId> | |
<version>${orientdb.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>com.orientechnologies</groupId> | |
<artifactId>orientdb-server</artifactId> | |
<version>${orientdb.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>com.orientechnologies</groupId> | |
<artifactId>orientdb-tools</artifactId> | |
<version>${orientdb.version}</version> | |
</dependency> | |
</dependencies> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment