Skip to content

Commit

Permalink
build: fix failed to load class issue with slf4j (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alkaar authored Aug 19, 2022
1 parent e7344a9 commit ede130c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@ libraryDependencies ++= Seq(
"org.apache.logging.log4j" %% "log4j-api-scala" % "12.0",
"org.apache.logging.log4j" % "log4j-core" % "2.13.0" % Runtime,
"org.scalatest" %% "scalatest" % "3.2.12" % Test,
"org.mockito" % "mockito-core" % "4.6.1" % Test
"org.mockito" % "mockito-core" % "4.6.1" % Test,
"org.slf4j" % "slf4j-nop" % "1.7.36" // Removes failed to load class warning
)

0 comments on commit ede130c

Please sign in to comment.