Skip to content

Commit

Permalink
Merge pull request #14 from embulk/embulk/logging-and-validation-libs
Browse files Browse the repository at this point in the history
Add slf4j-api and validation-api dependencies
  • Loading branch information
hiroyuki-sato authored May 13, 2024
2 parents 7b88529 + 8133589 commit 8811f1a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,13 @@ java {

dependencies {
compileOnly libs.embulk.spi
compileOnly libs.slf4j

implementation libs.embulk.util.config
implementation libs.embulk.util.file
implementation platform(libs.jackson.bom)
implementation libs.bundles.jackson
implementation libs.validation

testImplementation libs.junit4
testImplementation libs.embulk.core
Expand Down
6 changes: 6 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ embulk-spi = "0.11"
embulk-util-config = "0.5.0"
embulk-util-file = "0.2.0"

slf4j-api = "2.0.7"

validation-api = "2.0.1.Final"

# See https://github.com/FasterXML/jackson/wiki/Jackson-Releases for Jackson versions.
#
# We choose Jackson with the latest patch release of the latest open branch.
Expand All @@ -30,6 +34,8 @@ jackson-core = { group = "com.fasterxml.jackson.core", name = "jackson-core" }
jackson-databind = { group = "com.fasterxml.jackson.core", name = "jackson-databind" }
jackson-datatype-jdk8 = { group = "com.fasterxml.jackson.datatype", name = "jackson-datatype-jdk8" }
junit4 = { group = "junit", name = "junit", version.ref = "junit4" }
slf4j = { group = "org.slf4j", name = "slf4j-api", version.ref = "slf4j-api" }
validation = { group = "javax.validation", name = "validation-api", version.ref = "validation-api" }

[bundles]

Expand Down

0 comments on commit 8811f1a

Please sign in to comment.