Skip to content

Commit

Permalink
Update slf4j-api, slf4j-simple to 2.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
scala-steward committed Oct 20, 2023
1 parent 6ae69c9 commit a844d83
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -42,17 +42,17 @@ def subproject(name: String) = {
lazy val api = subproject("api")
.settings(
libraryDependencies ++= Seq(
"org.slf4j" % "slf4j-api" % "2.0.7"
"org.slf4j" % "slf4j-api" % "2.0.9"
)
)

lazy val jdk = subproject("jdk")
.dependsOn(api)
.settings(
libraryDependencies ++= Seq(
"org.slf4j" % "slf4j-api" % "2.0.7",
"org.slf4j" % "slf4j-api" % "2.0.9",
"org.scalameta" %% "munit" % "0.7.29" % Test,
"org.slf4j" % "slf4j-simple" % "2.0.7" % Test
"org.slf4j" % "slf4j-simple" % "2.0.9" % Test
)
)

Expand Down

0 comments on commit a844d83

Please sign in to comment.