Getting started
To use the ArangoDB Java driver, you need to import arangodb-java-driver as a library into your project.
The minimum required Java version is 1.8.
In a Maven project, you need to add the following dependency to pom.xml
(substitute x.x.x
with the latest driver version):
<dependencies>
<dependency>
<groupId>com.arangodb</groupId>
<artifactId>arangodb-java-driver</artifactId>
<version>x.x.x</version>
</dependency>
</dependencies>
In a Gradle project, you need to add the following to build.gradle
(substitute x.x.x
with the latest driver version):
dependencies {
implementation 'com.arangodb:arangodb-java-driver:x.x.x'
}
Help us improve
Anything unclear or buggy in this tutorial? Provide Feedback