Skip to content

Commit

Permalink
slf4j: upgrade, make log4j-slf4j an 'Optional' dependency (#244)
Browse files Browse the repository at this point in the history
`Optional` means it's non-transitive
  • Loading branch information
mpollmeier authored Feb 1, 2023
1 parent aea1ad1 commit d930a57
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
val cpgVersion = "1.3.587"
val joernVersion = "1.1.1406"
val cpgVersion = "1.3.591"
val joernVersion = "1.1.1418"

val gitCommitString = SettingKey[String]("gitSha")

Expand Down Expand Up @@ -97,8 +97,8 @@ lazy val commonSettings = Seq(
"com.fasterxml.jackson.core" % "jackson-databind" % "2.14.1",
"com.atlassian.sourcemap" % "sourcemap" % "2.0.0",
"commons-io" % "commons-io" % "2.11.0",
"org.slf4j" % "slf4j-api" % "1.7.36",
"org.apache.logging.log4j" % "log4j-slf4j-impl" % "2.18.0" % Runtime,
"org.slf4j" % "slf4j-api" % "2.0.6",
"org.apache.logging.log4j" % "log4j-slf4j2-impl" % "2.19.0" % Optional,
"io.joern" %% "x2cpg" % joernVersion % Test classifier "tests",
"org.scalatest" %% "scalatest" % "3.2.15" % Test
)
Expand Down

0 comments on commit d930a57

Please sign in to comment.