错误:删除`<< =`运算符。使用`key:= {x.value}`或`key~ =(old => {newValue})`

时间:2018-06-13 10:13:46

标签: scala sbt

当我编译sbt代码(Reactive Messaging Patterns

它在build.sbt中出错了 这一行:

编译中的

scalaSource<< =(编译中的baseDirectory)(_ /" src")

错误信息是: 错误:<<=运算符已被删除。使用key := { x.value }key ~= (old => { newValue })。 见http://www.scala-sbt.org/1.0/docs/Migrating-from-sbt-012x.html

1 个答案:

答案 0 :(得分:1)

根据sbt documentation,您应该按如下方式进行更改:

scalaSource in Compile := baseDirectory.value / "src"