Skip to content

Commit

Permalink
Add slf4j dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
philipp94831 committed Dec 20, 2023
1 parent ec3d404 commit 73d656b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion streams-bootstrap/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@ dependencies {
val log4jVersion = "2.21.1"
implementation(group = "org.apache.logging.log4j", name = "log4j-core", version = log4jVersion)
implementation(group = "org.apache.logging.log4j", name = "log4j-slf4j2-impl", version = log4jVersion)
api(group = "org.slf4j", name = "slf4j-api", version = "2.0.6") // required because other dependencies use Slf4j 1.x which is not properly resolved if this library is used in test scope
api(
group = "org.slf4j",
name = "slf4j-api",
version = "2.0.6"
) // required because other dependencies use Slf4j 1.x which is not properly resolved if this library is used in test scope
implementation(group = "com.google.guava", name = "guava", version = "31.1-jre")
implementation(group = "org.jooq", name = "jool", version = "0.9.14")

Expand Down

0 comments on commit 73d656b

Please sign in to comment.