Skip to content

Commit 8133589

Browse files
committed
Add slf4j-api and validation-api dependencies
1 parent 0f397b6 commit 8133589

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

build.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,13 @@ java {
3434

3535
dependencies {
3636
compileOnly libs.embulk.spi
37+
compileOnly libs.slf4j
38+
3739
implementation libs.embulk.util.config
3840
implementation libs.embulk.util.file
3941
implementation platform(libs.jackson.bom)
4042
implementation libs.bundles.jackson
43+
implementation libs.validation
4144

4245
testImplementation libs.junit4
4346
testImplementation libs.embulk.core

gradle/libs.versions.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ embulk-spi = "0.11"
77
embulk-util-config = "0.5.0"
88
embulk-util-file = "0.2.0"
99

10+
slf4j-api = "2.0.7"
11+
12+
validation-api = "2.0.1.Final"
13+
1014
# See https://github.com/FasterXML/jackson/wiki/Jackson-Releases for Jackson versions.
1115
#
1216
# We choose Jackson with the latest patch release of the latest open branch.
@@ -30,6 +34,8 @@ jackson-core = { group = "com.fasterxml.jackson.core", name = "jackson-core" }
3034
jackson-databind = { group = "com.fasterxml.jackson.core", name = "jackson-databind" }
3135
jackson-datatype-jdk8 = { group = "com.fasterxml.jackson.datatype", name = "jackson-datatype-jdk8" }
3236
junit4 = { group = "junit", name = "junit", version.ref = "junit4" }
37+
slf4j = { group = "org.slf4j", name = "slf4j-api", version.ref = "slf4j-api" }
38+
validation = { group = "javax.validation", name = "validation-api", version.ref = "validation-api" }
3339

3440
[bundles]
3541

0 commit comments

Comments
 (0)