From 2b1d964f14d12d7b2c178e407adbb82fa5750528 Mon Sep 17 00:00:00 2001 From: Sjoerd Mulder Date: Wed, 2 Aug 2017 08:21:15 +0200 Subject: [PATCH] =build Fixing sbt deprecation warning (#23454) warning: `<<=` operator is deprecated. Use `key := { x.value }` See http://www.scala-sbt.org/0.13/docs/Migrating-from-sbt-012x.html --- akka-docs/src/main/paradox/scala/multi-jvm-testing.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/akka-docs/src/main/paradox/scala/multi-jvm-testing.md b/akka-docs/src/main/paradox/scala/multi-jvm-testing.md index c9cc837f44..41cefe16b0 100644 --- a/akka-docs/src/main/paradox/scala/multi-jvm-testing.md +++ b/akka-docs/src/main/paradox/scala/multi-jvm-testing.md @@ -117,8 +117,8 @@ You can change the name of the multi-JVM test source directory by adding the fol configuration to your project: ```none -unmanagedSourceDirectories in MultiJvm <<= - Seq(baseDirectory(_ / "src/some_directory_here")).join +unmanagedSourceDirectories in MultiJvm := + Seq(baseDirectory(_ / "src/some_directory_here")).join.value ``` You can change what the `MultiJvm` identifier is. For example, to change it to