Download and API Reference

Download and installation can be achieved through either the use of maven repositories or a downloaded archive, depending on the version in use.

Current Release (2.0.2)

To use the Java SDK, simply point your application pom to the library, which is available on Maven Central. Here is a typical pom.xml that you can copy and paste into your Java project:

<dependencies>
    <dependency>
        <groupId>com.couchbase.client</groupId>
        <artifactId>java-client</artifactId>
        <version>2.0.2</version>
    </dependency>
</dependencies>

Previous Releases

Previous releases back through 1.2.0 are also available on maven central. Use this in your pom.xml, substituting the version with the one you wish to install:

<dependencies>
    <dependency>
        <groupId>com.couchbase.client</groupId>
        <artifactId>couchbase-client</artifactId>
        <version>${VERSION}</version>
    </dependency>
</dependencies>