Skip to content

Commit

Permalink
Java client jackson dependency update (#38)
Browse files Browse the repository at this point in the history
Updating the documentation so that the jackson-databind dependency matches the one used by the java client.
  • Loading branch information
l-trotta authored Jul 4, 2024
1 parent 4fc4d12 commit ea15668
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions serverless/pages/clients-java-getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
```

Expand All @@ -52,7 +52,7 @@ the following to the `pom.xml` of your project:
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.12.3</version>
<version>2.17.0</version>
</dependency>

</dependencies>
Expand Down Expand Up @@ -169,4 +169,4 @@ esClient.delete(d -> d.index("products").id("bk-1"));

```java
esClient.indices().delete(d -> d.index("products"));
```
```

0 comments on commit ea15668

Please sign in to comment.