You do not have a build file here $YOUR_PROJECT_NAME\project\Build.scala ?
plugins.sbt should contain the following:
// The Typesafe repository resolvers += "Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/" // Use the Play sbt plugin for Play projects addSbtPlugin("play" % "sbt-plugin" % "2.2.0")
and in Build.scala you should have the following:
val appDependencies = Seq( // Add your project dependencies here, jdbc, anorm, "mysql" % "mysql-connector-java" % "5.1.18" )
To be honest with you, you would be better off running the game executable and creating a project, rather than from IDEA.
cmd: $ play new myAppName
then use the sbt plugin for IDEA or if you have IDEA 13 you can import the project using SBT.
https://github.com/mpeltonen/sbt-idea
almendar
source share