Skip to content
This repository has been archived by the owner on Apr 13, 2022. It is now read-only.

Commit

Permalink
dropped databinder.dispatch dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-aksarin committed Sep 24, 2018
1 parent 5c9aff6 commit 2aa8ed7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
9 changes: 4 additions & 5 deletions build.sbt
Expand Up @@ -70,7 +70,6 @@ val apiDependencies = Seq(
)

val loggingDependencies = Seq(
"org.scorexfoundation" %% "scorex-util" % "0.1.1",
"ch.qos.logback" % "logback-classic" % "1.+"
)

Expand All @@ -79,13 +78,13 @@ val testingDependencies = Seq(
"com.typesafe.akka" %% "akka-http-testkit" % "10.+" % "test",
"org.scalactic" %% "scalactic" % "3.0.3" % "test",
"org.scalatest" %% "scalatest" % "3.0.3" % "test",
"org.scalacheck" %% "scalacheck" % "1.13.+",
"net.databinder.dispatch" %% "dispatch-core" % "+" % "test"
"org.scalacheck" %% "scalacheck" % "1.13.+"
)

libraryDependencies ++= Seq(
"com.iheart" %% "ficus" % "1.4.2",
"org.scorexfoundation" %% "scrypto" % "2.+"
"org.scorexfoundation" %% "scrypto" % "2.+",
"org.scorexfoundation" %% "scorex-util" % "0.1.1",
) ++ networkDependencies ++ apiDependencies ++ loggingDependencies ++ testingDependencies


Expand Down Expand Up @@ -172,4 +171,4 @@ pomExtra in ThisBuild :=

//FindBugs settings

findbugsReportType := Some(FindbugsReport.PlainHtml)
findbugsReportType := Some(FindbugsReport.PlainHtml)
3 changes: 1 addition & 2 deletions examples/build.sbt
Expand Up @@ -5,8 +5,7 @@ libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.0.1" % "test",
"org.scalacheck" %% "scalacheck" % "1.13.+" % "test",
"org.scorexfoundation" %% "iodb" % "0.3.2",
"com.typesafe.akka" %% "akka-testkit" % "2.4.17" % "test",
"net.databinder.dispatch" %% "dispatch-core" % "+" % "test"
"com.typesafe.akka" %% "akka-testkit" % "2.4.17" % "test"
)

mainClass in assembly := Some("examples.hybrid.HybridApp")
Expand Down
2 changes: 1 addition & 1 deletion lock.sbt
Expand Up @@ -44,4 +44,4 @@ dependencyOverrides in ThisBuild ++= Seq(
"org.typelevel" % "macro-compat_2.12" % "1.1.1",
"org.whispersystems" % "curve25519-java" % "0.5.0"
)
// LIBRARY_DEPENDENCIES_HASH 64ceb364111894a1cbe5736e2d97bec19493252c
// LIBRARY_DEPENDENCIES_HASH dcadd85284f08408a581a029a64de14aa2c9eec1

0 comments on commit 2aa8ed7

Please sign in to comment.