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>
- 2.0.2 GA CURRENT - Download | API Reference
- 2.0.1 GA - Download | API Reference
- 2.0.0 GA - Download | API Reference
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>
Archive Downloads
- 1.4 GA - Download | API Reference
- 1.3 GA - Download | API Reference
- 1.2 GA - Download | API Reference
- 1.1 GA - Download | API Reference