=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
This commit is contained in:
parent
6be0c4c55f
commit
2b1d964f14
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue