21

I'm upgrading a project from Play 2.2 to 2.3.0.

The following routesImport line in build.sbt stopped resolving and Play says val not found error:

lazy val root = (project in file(".")).enablePlugins(PlayScala)

routesImport += "binders._"

I can't find any documentation for 2.3.x that would explain how to migrate this. Please advise.

Jacek Laskowski
  • 72,696
  • 27
  • 242
  • 420
bloo
  • 585
  • 1
  • 5
  • 15

1 Answers1

29

routesImports is in import play.PlayImport.PlayKeys._

Jacek Laskowski
  • 72,696
  • 27
  • 242
  • 420
ferk86
  • 2,325
  • 1
  • 23
  • 27