ReactiveMessagingPatterns_ActorModel icon indicating copy to clipboard operation
ReactiveMessagingPatterns_ActorModel copied to clipboard

'<<=' operator deprecated

Open feyman2016 opened this issue 8 years ago • 0 comments

Hi, this line : scalaSource in Compile <<= (baseDirectory in Compile)(_ / "src") in build.sbt doesn't work now because the '<<=' operator has been deprecated, I used the := to substitute, and this works: scalaSource in Compile := (baseDirectory in Compile)(_ / "src").value .Here is the reference: http://www.scala-sbt.org/release/docs/Migrating-from-sbt-012x.html

feyman2016 avatar Sep 11 '17 01:09 feyman2016