Skip to content

Commit

Permalink
Only depend on slf4j-api from metabrowse-server
Browse files Browse the repository at this point in the history
As metabrowse-server is used as a library, it shouldn't depend on a
logging implementation itself, only a logger API.
  • Loading branch information
alexarchambault committed Dec 6, 2018
1 parent 5c8a58f commit 8bbca7c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ lazy val server = project
resolvers += Resolver.sonatypeRepo("snapshots"),
libraryDependencies ++= List(
"io.undertow" % "undertow-core" % "2.0.13.Final",
"org.slf4j" % "slf4j-simple" % "1.8.0-beta2",
"org.slf4j" % "slf4j-api" % "1.8.0-beta2",
"org.jboss.xnio" % "xnio-nio" % "3.6.5.Final",
"org.scalameta" % "interactive" % "4.0.0" cross CrossVersion.full,
"org.scalameta" %% "mtags" % "0.2.0"
Expand Down Expand Up @@ -248,7 +248,8 @@ lazy val tests = project
"org.scalameta" % "interactive" % Version.scalameta cross CrossVersion.full,
"org.scalatest" %% "scalatest" % "3.0.5",
"org.scalacheck" %% "scalacheck" % "1.14.0",
"org.seleniumhq.selenium" % "selenium-java" % "2.35.0" % IntegrationTest
"org.seleniumhq.selenium" % "selenium-java" % "2.35.0" % IntegrationTest,
"org.slf4j" % "slf4j-simple" % "1.8.0-beta2"
),
compile.in(IntegrationTest) := {
_root_.io.github.bonigarcia.wdm.WebDriverManager.chromedriver.setup()
Expand Down

0 comments on commit 8bbca7c

Please sign in to comment.