Change to logback 1.0.4, see #2198

This commit is contained in:
Patrik Nordwall 2012-06-07 20:40:14 +02:00
parent 2cbc04a5ab
commit f6365e83e7
3 changed files with 3 additions and 9 deletions

View file

@ -187,7 +187,7 @@ It has one single dependency; the slf4j-api jar. In runtime you also need a SLF4
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.0.0</version>
<version>1.0.4</version>
<scope>runtime</scope>
</dependency>

View file

@ -230,7 +230,7 @@ It has one single dependency; the slf4j-api jar. In runtime you also need a SLF4
.. code-block:: scala
lazy val logback = "ch.qos.logback" % "logback-classic" % "1.0.0" % "runtime"
lazy val logback = "ch.qos.logback" % "logback-classic" % "1.0.4" % "runtime"
You need to enable the Slf4jEventHandler in the 'event-handlers' element in

View file

@ -484,7 +484,7 @@ object Dependency {
object V {
val Camel = "2.8.0"
val Logback = "1.0.0"
val Logback = "1.0.4"
val Netty = "3.3.0.Final"
val Protobuf = "2.4.1"
val ScalaStm = "0.5"
@ -501,12 +501,6 @@ object Dependency {
val slf4jApi = "org.slf4j" % "slf4j-api" % V.Slf4j // MIT
val zeroMQ = "org.zeromq" % "zeromq-scala-binding_2.9.1" % "0.0.6" // ApacheV2
// Runtime
object Runtime {
val logback = "ch.qos.logback" % "logback-classic" % V.Logback % "runtime" // MIT
}
// Test
object Test {