# Installation

The HStreamDB Java SDK is published in Maven central, available at hstreamdb-java (opens new window).

# Maven

For Maven Users, the library can be included easily like this:


<dependencies>
  <dependency>
    <groupId>io.hstream</groupId>
    <artifactId>hstreamdb-java</artifactId>
    <version>0.7.0</version>
  </dependency>
</dependencies>

1
2
3
4
5
6
7
8
9

# Gradle

For Gradle Users, the library can be included easily like this:


implementation 'io.hstream:hstreamdb-java:0.7.0'

1
2
3