ArangoDB Java Driver - Getting Started
Supported versionsPermalink
Only the latest version of this driver is maintained to support the most recent ArangoDB server features. It is compatible with all supported stable versions of ArangoDB server, see Product Support End-of-life Announcements.
The minimum required Java version is 1.8+ (since driver version 6.x.x).
MavenPermalink
To add the driver to your project with maven, add the following code to your
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>
Compile the Java DriverPermalink
mvn clean install -DskipTests=true -Dgpg.skip=true -Dmaven.javadoc.skip=true -B
GraalVM Native ImagePermalink
The driver supports GraalVM Native Image generation since version 6.6.1
.
The related configuration can be found here:
Quarkus and Helidon supportPermalink
The driver can be used from Quarkus and Helidon applications and does not require any additional configuration for GraalVM native image generation. Examples can be found here: