Add httpclient5 dependency (#5377)

Add httpclient5 dependency to use Apache HttpClient 5 Transport

Signed-off-by: Gautam Mishra <gautam.mishra@hotmail.com>
Co-authored-by: Naarcha-AWS <97990722+Naarcha-AWS@users.noreply.github.com>
This commit is contained in:
Gautam Mishra 2023-11-08 15:34:52 -06:00 committed by GitHub
parent 77bcd03a5d
commit 07762305f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -20,6 +20,12 @@ To start using the OpenSearch Java client, you need to provide a transport. The
<artifactId>opensearch-java</artifactId>
<version>2.6.0</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents.client5</groupId>
<artifactId>httpclient5</artifactId>
<version>5.2.1</version>
</dependency>
```
{% include copy.html %}