From 0ab38b0ddade55e6bd2d8341e127cec39b871891 Mon Sep 17 00:00:00 2001 From: Taeik Lim Date: Wed, 22 Nov 2023 03:58:38 +0900 Subject: [PATCH] [DOC] Dump up java client version (2.6.0 -> 2.8.1) (#5644) Signed-off-by: Taeik Lim --- _clients/java.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/_clients/java.md b/_clients/java.md index e471b9f9..445788e1 100644 --- a/_clients/java.md +++ b/_clients/java.md @@ -18,7 +18,7 @@ To start using the OpenSearch Java client, you need to provide a transport. The org.opensearch.client opensearch-java - 2.6.0 + 2.8.1 @@ -33,7 +33,8 @@ If you're using Gradle, add the following dependencies to your project: ``` dependencies { - implementation 'org.opensearch.client:opensearch-java:2.6.0' + implementation 'org.opensearch.client:opensearch-java:2.8.1' + implementation 'org.apache.httpcomponents.client5:httpclient5:5.2.1' } ``` {% include copy.html %}