Added OpenSearch dependency and updated logstash and OpenSearch versions

Signed-off-by: keithhc2 <keithhc2@users.noreply.github.com>
This commit is contained in:
keithhc2 2021-11-30 11:17:46 -08:00
parent 9022db56eb
commit b249b45f1d
1 changed files with 6 additions and 1 deletions

View File

@ -12,9 +12,14 @@ For example, you can submit requests to your cluster using objects to create ind
## Setup
To start using the OpenSearch Java client, ensure that you have the following dependency in your project's `pom.xml` file:
To start using the OpenSearch Java client, ensure that you have the following dependencies in your project's `pom.xml` file:
```
<dependency>
<groupId>org.opensearch.client</groupId>
<artifactId>opensearch-rest-client</artifactId>
<version>{{site.opensearch_version}}</version>
</dependency>
<dependency>
<groupId>org.opensearch.client</groupId>
<artifactId>opensearch-java</artifactId>