Skip to content

Commit

Permalink
Update slf4j-api to 2.0.16 (#861)
Browse files Browse the repository at this point in the history
  • Loading branch information
scala-steward authored Aug 18, 2024
1 parent b282044 commit c270c07
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ scalafixConfig := Some(file(if (scalaBinaryVersion.value == "3") ".scalafix.conf
ThisBuild / useCoursier := false

val scala2Options = Seq(
"-Xlint",
"-Xlint:adapted-args",
"-Xlint:nullary-unit",
"-Xlint",
"-Xlint:adapted-args",
"-Xlint:nullary-unit"
)

val scalac13Options = scala2Options ++ Seq(
Expand All @@ -61,7 +61,7 @@ val scala3Options = Seq(
"-Wunused:all",
"-Wvalue-discard",
// Unused locals seem to wrong on Scala XML syntax
"-Wconf:msg=unused value of type scala.xml.NodeBuffer:silent",
"-Wconf:msg=unused value of type scala.xml.NodeBuffer:silent"
)

scalacOptions := {
Expand All @@ -70,7 +70,7 @@ scalacOptions := {
"-deprecation",
"-feature",
"-encoding",
"utf8",
"utf8"
)
common ++ (scalaBinaryVersion.value match {
case "2.12" => scalac12Options
Expand Down Expand Up @@ -104,7 +104,7 @@ libraryDependencies ++= Seq(
"org.mockito" % "mockito-all" % "1.10.19" % "test",
"joda-time" % "joda-time" % "2.12.7" % "test",
"org.joda" % "joda-convert" % "2.2.3" % "test",
"org.slf4j" % "slf4j-api" % "2.0.13" % "test"
"org.slf4j" % "slf4j-api" % "2.0.16" % "test"
)

libraryDependencies ++= (if (scalaBinaryVersion.value == "3") {
Expand Down

0 comments on commit c270c07

Please sign in to comment.