I have created new Play + Scala project using latest typesafe activator and when trying to import in IntelliJ IDE I was getting below error,
info] Loading project definition from E:\Personal\Scala Workspace\DeployZip\project E:\Personal\Scala Workspace\DeployZip\build.sbt:18: error: not found: value routesGenerator routesGenerator := InjectedRoutesGenerator ^ [error] Type error in expression Consult IDE log for more details (Help | Show Log)
What are the possible reasons for this error?
build.sbtandproject/plugins.sbtcontent then that should help. A guess would be that the Play plugin isn't ready by that point. (Is thereaddSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.4.0")inproject/plugins.sbt?) - bjfletcher