Skip to content

Commit

Permalink
Update Jackson version (#768)
Browse files Browse the repository at this point in the history
  • Loading branch information
swallez authored and github-actions[bot] committed Mar 26, 2024
1 parent 090ed49 commit 3e87f32
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions docs/getting-started.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ show usage with Jackson.
--------------------------------------------------
dependencies {
implementation 'co.elastic.clients:elasticsearch-java:{version}'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.12.3'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.17.0'
}
--------------------------------------------------

Expand All @@ -47,7 +47,7 @@ dependencies:
<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
4 changes: 2 additions & 2 deletions docs/setup/installation.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ available at https://snapshots.elastic.co/maven/.
--------------------------------------------------
dependencies {
implementation 'co.elastic.clients:elasticsearch-java:{version}'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.12.3'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.17.0'
}
--------------------------------------------------

Expand All @@ -50,7 +50,7 @@ dependencies:
<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
2 changes: 1 addition & 1 deletion example-transports/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ java {


dependencies {
val jacksonVersion = "2.13.3"
val jacksonVersion = "2.17.0"

api("io.netty", "netty-codec-http", "4.1.93.Final")

Expand Down
2 changes: 1 addition & 1 deletion java-client-serverless/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ publishing {

dependencies {
val elasticsearchVersion = "8.10.0"
val jacksonVersion = "2.13.3"
val jacksonVersion = "2.17.0"
val openTelemetryVersion = "1.29.0"

// Apache 2.0
Expand Down
4 changes: 2 additions & 2 deletions java-client-serverless/docs/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ You can add the Elasticsearch Serverless Java client to your Java project using
```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 @@ -48,7 +48,7 @@ In the `pom.xml` of your project, add the following dependencies:
<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
2 changes: 1 addition & 1 deletion java-client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ dependencies {
// Compile and test with the last 7.x version to make sure transition scenarios where
// the Java API client coexists with a 7.x HLRC work fine
val elasticsearchVersion = "8.10.0"
val jacksonVersion = "2.13.3"
val jacksonVersion = "2.17.0"
val openTelemetryVersion = "1.29.0"

// Apache 2.0
Expand Down

0 comments on commit 3e87f32

Please sign in to comment.