From ea156681f4e6e2cfd4bf992c264e4d1210bc0d51 Mon Sep 17 00:00:00 2001 From: Laura Trotta <153528055+l-trotta@users.noreply.github.com> Date: Thu, 4 Jul 2024 13:47:38 +0200 Subject: [PATCH] Java client jackson dependency update (#38) Updating the documentation so that the jackson-databind dependency matches the one used by the java client. --- serverless/pages/clients-java-getting-started.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/serverless/pages/clients-java-getting-started.mdx b/serverless/pages/clients-java-getting-started.mdx index 144573dd..016b4e6a 100644 --- a/serverless/pages/clients-java-getting-started.mdx +++ b/serverless/pages/clients-java-getting-started.mdx @@ -30,7 +30,7 @@ You can install the Java client as a Gradle dependency: ```groovy dependencies { implementation 'co.elastic.clients:elasticsearch-java-serverless:1.0.0-20231031' - implementation 'com.fasterxml.jackson.core:jackson-databind:2.12.3' + implementation 'com.fasterxml.jackson.core:jackson-databind:2.17.0' } ``` @@ -52,7 +52,7 @@ the following to the `pom.xml` of your project: com.fasterxml.jackson.core jackson-databind - 2.12.3 + 2.17.0 @@ -169,4 +169,4 @@ esClient.delete(d -> d.index("products").id("bk-1")); ```java esClient.indices().delete(d -> d.index("products")); -``` \ No newline at end of file +```