From 66f90a8d3c4c128159ac6f3f7b034f323373557f Mon Sep 17 00:00:00 2001 From: vagimeli Date: Tue, 25 Apr 2023 12:29:36 -0600 Subject: [PATCH] Revert "Update java client version (#3753)" This reverts commit 172b47250c86cd887690dfe63f124c2246509d21. --- _clients/java.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/_clients/java.md b/_clients/java.md index 5ee63ffb98..06ba9a3984 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.4.0 + 2.3.0 ``` {% include copy.html %} @@ -27,7 +27,7 @@ If you're using Gradle, add the following dependencies to your project: ``` dependencies { - implementation 'org.opensearch.client:opensearch-java:2.4.0' + implementation 'org.opensearch.client:opensearch-java:2.3.0' } ``` {% include copy.html %} @@ -48,7 +48,7 @@ Alternatively, you can create a Java client by using the `RestClient`-based tran org.opensearch.client opensearch-java - 2.4.0 + 2.3.0 ``` {% include copy.html %} @@ -58,7 +58,7 @@ If you're using Gradle, add the following dependencies to your project" ``` dependencies { implementation 'org.opensearch.client:opensearch-rest-client: {{site.opensearch_version}}' - implementation 'org.opensearch.client:opensearch-java:2.4.0' + implementation 'org.opensearch.client:opensearch-java:2.3.0' } ``` {% include copy.html %}