Fix logging

This commit is contained in:
Thomas McCabe 2016-04-29 10:43:33 -05:00
parent 4fe1383184
commit 1973be0d73

View file

@ -7,11 +7,13 @@ object BitcoinSBuild extends Build {
val scalaV = "2.11.7"
val organization = "org.bitcoins"
val slf4jV = "1.7.5"
val logbackV = "1.0.13"
val appDependencies = Seq(
"org.scalatest" % "scalatest_2.11" % "2.2.0",
("org.bitcoinj" % "bitcoinj-core" % "0.13.3").exclude("org.slf4j", "slf4j-api"),
"org.slf4j" % "slf4j-api" % slf4jV /*% "provided"*/,
"io.spray" %% "spray-json" % "1.3.0" withSources() withJavadoc()
"io.spray" %% "spray-json" % "1.3.0" withSources() withJavadoc(),
"ch.qos.logback" % "logback-classic" % logbackV
)
val main = Project(appName, file(".")).enablePlugins().settings(
@ -22,4 +24,3 @@ object BitcoinSBuild extends Build {
scalacOptions ++= Seq("-unchecked", "-deprecation")
)
}