Skip to content

Latest commit

 

History

History
63 lines (50 loc) · 2.52 KB

README.md

File metadata and controls

63 lines (50 loc) · 2.52 KB

ArangoDB-Logo

arangodb-java-driver

2.7: Build Status 3.0: Build Status 3.1: Build Status 4.1: Build Status master: Build Status

Supported versions

arangodb-java-driverArangoDBnetwork protocolJava version
4.1.x3.1.xVelocyStream1.6+
4.0.03.1.0-RC1 to 3.1.0-RC3VelocyStream1.6+
3.1.x3.1.xHTTP1.6+
3.0.x3.0.xHTTP1.6+
2.7.42.7.x and 2.8.xHTTP1.6+

Maven

To add the driver to your project with maven, add the following code to your pom.xml (please use a driver with a version number compatible to your ArangoDB server's version):

ArangoDB 3.1.X

<dependencies>
  <dependency>
    <groupId>com.arangodb</groupId>
    <artifactId>arangodb-java-driver</artifactId>
    <version>4.1.0</version>
  </dependency>
	....
</dependencies>

If you want to test with a snapshot version (e.g. 4.0.0-SNAPSHOT), add the staging repository of oss.sonatype.org to your pom.xml:

<repositories>
  <repository>
    <id>arangodb-snapshots</id>
    <url>https://oss.sonatype.org/content/groups/staging</url>
  </repository>
</repositories>

Compile java driver

mvn clean install -DskipTests=true -Dgpg.skip=true -Dmaven.javadoc.skip=true -B

Learn more