Scarf tracking pixel

Aerospike Downloads

Get the latest and archived Aerospike software downloads here.

Aerospike Java Client Library

Supported Versions
Download
GitHub logo

Aerospike Java Client Library is a database client library for building Java/JVM applications that store and retrieve data from an Aerospike cluster.

Java Client Library can be added as a dependency to your project.

The following are settings for various popular project configurations:

  • Maven
  • Ivy
  • Gradle
  • SBT
  • Leinigen

Add the following dependency to your pom.xml:

<dependencies>
<dependency>
<groupId>com.aerospike</groupId>
<artifactId>aerospike-client-jdk21</artifactId>
<version>9.1.0</version>
</dependency>
</dependencies>

Add the following to your ivy.xml:

<dependencies>
<dependency org="com.aerospike" name="aerospike-client-jdk21" revision="9.1.0" />
</dependencies>

Add the following to your build.gradle:

repositories {
mavenCentral()
}
dependencies {
compile "com.aerospike:aerospike-client-jdk21:9.1.0"
}

Add the following to your build.sbt:

libraryDependencies += "com.aerospike" % "aerospike-client-jdk21" % "9.1.0"

Add the following to your project.clj:

:dependencies [[com.aerospike/aerospike-client-jdk21 "9.1.0"]]