Skip to content

Commit ca27c51

Browse files
committed
Upgrade Jackson to 2.16.2 and embulk-util-config to 0.5.0
1 parent 84485de commit ca27c51

File tree

3 files changed

+19
-14
lines changed

3 files changed

+19
-14
lines changed

Diff for: build.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ dependencies {
3939

4040
implementation libs.embulk.util.config
4141
implementation libs.validation
42+
implementation platform(libs.jackson.bom)
4243
implementation libs.bundles.jackson
4344
}
4445

Diff for: gradle.lockfile

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
# This is a Gradle generated file for dependency locking.
22
# Manual edits can break the build and are not advised.
33
# This file is expected to be part of source control.
4-
com.fasterxml.jackson.core:jackson-annotations:2.6.7=compileClasspath,runtimeClasspath
5-
com.fasterxml.jackson.core:jackson-core:2.6.7=compileClasspath,runtimeClasspath
6-
com.fasterxml.jackson.core:jackson-databind:2.6.7.5=compileClasspath,runtimeClasspath
7-
com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.6.7=compileClasspath,runtimeClasspath
8-
javax.validation:validation-api:1.1.0.Final=compileClasspath,runtimeClasspath
4+
com.fasterxml.jackson.core:jackson-annotations:2.16.2=compileClasspath,runtimeClasspath
5+
com.fasterxml.jackson.core:jackson-core:2.16.2=compileClasspath,runtimeClasspath
6+
com.fasterxml.jackson.core:jackson-databind:2.16.2=compileClasspath,runtimeClasspath
7+
com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.16.2=compileClasspath,runtimeClasspath
8+
com.fasterxml.jackson:jackson-bom:2.16.2=compileClasspath,runtimeClasspath
9+
javax.validation:validation-api:2.0.1.Final=compileClasspath,runtimeClasspath
910
org.embulk:embulk-spi:0.11=compileClasspath
10-
org.embulk:embulk-util-config:0.3.4=compileClasspath,runtimeClasspath
11+
org.embulk:embulk-util-config:0.5.0=compileClasspath,runtimeClasspath
1112
org.msgpack:msgpack-core:0.8.24=compileClasspath
1213
org.slf4j:slf4j-api:2.0.7=compileClasspath
1314
empty=

Diff for: gradle/libs.versions.toml

+11-8
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,25 @@ gradle-embulk-plugins = "0.7.0"
55
embulk-spi = "0.11"
66
slf4j-api = "2.0.7"
77

8-
embulk-util-config = "0.3.4"
9-
validation-api = "1.1.0.Final"
8+
embulk-util-config = "0.5.0"
9+
validation-api = "2.0.1.Final"
1010

11-
jackson = "2.6.7"
12-
jackson-databind = "2.6.7.5"
11+
# See https://github.com/FasterXML/jackson/wiki/Jackson-Releases for Jackson versions.
12+
#
13+
# We choose Jackson with the latest patch release of the latest open branch.
14+
jackson = "2.16.2"
1315

1416
[libraries]
1517

1618
embulk-spi = { group = "org.embulk", name = "embulk-spi", version.ref = "embulk-spi" }
1719
slf4j = { group = "org.slf4j", name = "slf4j-api", version.ref = "slf4j-api" }
1820
embulk-util-config = { group = "org.embulk", name = "embulk-util-config", version.ref = "embulk-util-config" }
1921
validation = { group = "javax.validation", name = "validation-api", version.ref = "validation-api" }
20-
jackson-annotations = { group = "com.fasterxml.jackson.core", name = "jackson-annotations", version.ref = "jackson" }
21-
jackson-core = { group = "com.fasterxml.jackson.core", name = "jackson-core", version.ref = "jackson" }
22-
jackson-databind = { group = "com.fasterxml.jackson.core", name = "jackson-databind", version.ref = "jackson-databind" }
23-
jackson-datatype-jdk8 = { group = "com.fasterxml.jackson.datatype", name = "jackson-datatype-jdk8", version.ref = "jackson" }
22+
jackson-bom = { group = "com.fasterxml.jackson", name = "jackson-bom", version.ref = "jackson" }
23+
jackson-annotations = { group = "com.fasterxml.jackson.core", name = "jackson-annotations" }
24+
jackson-core = { group = "com.fasterxml.jackson.core", name = "jackson-core" }
25+
jackson-databind = { group = "com.fasterxml.jackson.core", name = "jackson-databind" }
26+
jackson-datatype-jdk8 = { group = "com.fasterxml.jackson.datatype", name = "jackson-datatype-jdk8" }
2427

2528
[bundles]
2629

0 commit comments

Comments
 (0)