Developer Guide for ScalarDB Cluster with the Java API
ScalarDB Cluster provides a Java API for developing applications. This document explains how to use the Java API.
Add ScalarDB Cluster Java Client SDK to your build
The ScalarDB Cluster Java Client SDK is available in the Maven Central Repository.
To add a dependency on the ScalarDB Cluster Java Client SDK by using Gradle, use the following:
dependencies {
implementation 'com.scalar-labs:scalardb-cluster-java-client-sdk:3.11.5'
}
To add a dependency by using Maven, use the following:
<dependency>
<groupId>com.scalar-labs</groupId>
<artifactId>scalardb-cluster-java-client-sdk</artifactId>
<version>3.11.5</version>
</dependency>