I see there's a note under building with scala here:
http://www.playframework.com/documentation/2.3.x/Build
Yes, for .scala builds you need some imports. For .sbt builds the imports are automatic.
To get the same imports as .sbt you'll need:
import com.typesafe.sbt.web.SbtWeb.autoImport._
import com.typesafe.sbt.less.SbtLess.autoImport._
The sbt web plugins all follow the same naming conventions.
Or alternatively, the autoImports refer to the Import objects and you can use those directly:
import com.typesafe.sbt.web.Import._
import com.typesafe.sbt.less.Import._
- Peter
> --
> You received this message because you are subscribed to the Google Groups "play-framework" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to
play-framewor...@googlegroups.com.
> For more options, visit
https://groups.google.com/d/optout.