IntelliJ claims to work with the Play platform. I can not make it work.
- Install IDEA 14.0
- Install the Scala 1.1.1 plugin
- Open project directory in IntelliJ
- Import as SBT

After import, I do not see the source files.

My barebones play project:
build.sbt
name := "foo" version := "1.0-SNAPSHOT" libraryDependencies ++= Seq( jdbc, anorm, cache ) lazy val root = (project in file(".")).enablePlugins(PlayScala)
Project /plugins.sbt
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.3.4")
Conf / Routes
GET / controllers.Application.index()
application / controllers / Application.scala
package controllers import play.api.mvc._ object Application extends Controller { def index = Action { Ok("It works!") } }
This process is great for the base SBT project, but not for Play projects.
EDIT: these are my logs from this session:
2014-11-19 13:45:58,421 [ 0] INFO -
source share