当我编译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
答案 0 :(得分:1)
根据sbt documentation,您应该按如下方式进行更改:
scalaSource in Compile := baseDirectory.value / "src"