Having transferred a working project into SBT, I've noticed that logback can't seem to find logback.xml
- even when it's in src/main/resources/logback.xml
. Or anywhere else for that matters, e.g. classpath
. Has anybody else had this problem?
Here is my build.sbt
file:
name := "goGame"
version := "1.0"
scalaVersion := "2.9.2"
libraryDependencies += "org.slf4j" % "slf4j-simple" % "1.6.4"
libraryDependencies += "org.scalatest" % "scalatest_2.9.0" % "1.9.1"
libraryDependencies += "ch.qos.logback" % "logback-core" % "1.0.13"
libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.0.13"
libraryDependencies += "com.github.scct" % "scct_2.10" % "0.2.1"
libraryDependencies += "org.scala-lang" % "scala-swing" % "2.9.2"
libraryDependencies += "org.hamcrest" % "hamcrest-all" % "1.3"
libraryDependencies += "junit" % "junit" % "4.11"