update logback test/docs dependency (#22972)

This commit is contained in:
Patrik Nordwall 2017-05-19 13:30:57 +02:00 committed by Johan Andrén
parent 7ca11b08ab
commit 3881516654
3 changed files with 3 additions and 3 deletions

View file

@ -268,7 +268,7 @@ It has a single dependency: the slf4j-api jar. In your runtime, you also need a
<dependency> <dependency>
<groupId>ch.qos.logback</groupId> <groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId> <artifactId>logback-classic</artifactId>
<version>1.1.3</version> <version>1.2.3</version>
</dependency> </dependency>
``` ```

View file

@ -309,7 +309,7 @@ It has a single dependency: the slf4j-api jar. In your runtime, you also need a
> >
```scala ```scala
libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.1.3" libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.2.3"
``` ```
You need to enable the Slf4jLogger in the `loggers` element in You need to enable the Slf4jLogger in the `loggers` element in

View file

@ -86,7 +86,7 @@ object Dependencies {
val commonsIo = "commons-io" % "commons-io" % "2.5" % "test" // ApacheV2 val commonsIo = "commons-io" % "commons-io" % "2.5" % "test" // ApacheV2
val commonsCodec = "commons-codec" % "commons-codec" % "1.10" % "test" // ApacheV2 val commonsCodec = "commons-codec" % "commons-codec" % "1.10" % "test" // ApacheV2
val junit = "junit" % "junit" % junitVersion % "test" // Common Public License 1.0 val junit = "junit" % "junit" % junitVersion % "test" // Common Public License 1.0
val logback = "ch.qos.logback" % "logback-classic" % "1.2.1" % "test" // EPL 1.0 / LGPL 2.1 val logback = "ch.qos.logback" % "logback-classic" % "1.2.3" % "test" // EPL 1.0 / LGPL 2.1
val mockito = "org.mockito" % "mockito-all" % "1.10.19" % "test" // MIT val mockito = "org.mockito" % "mockito-all" % "1.10.19" % "test" // MIT
// changing the scalatest dependency must be reflected in akka-docs/rst/dev/multi-jvm-testing.rst // changing the scalatest dependency must be reflected in akka-docs/rst/dev/multi-jvm-testing.rst
val scalatest = Def.setting { "org.scalatest" %% "scalatest" % scalaTestVersion.value % "test" } // ApacheV2 val scalatest = Def.setting { "org.scalatest" %% "scalatest" % scalaTestVersion.value % "test" } // ApacheV2