Playframework 2.0 不要编译项目

Playframework 2.0 不要编译项目,playframework-2.0,sbt,Playframework 2.0,Sbt,我成功地创建了play项目,但当我使用play运行时,它会显示异常 [info] Loading project definition from H:\MyPlay\project H:\MyPlay\build.sbt:8: error: ')' expected but eof found. cache ^ [error] Error parsing expression. Ensure that there are no blank lines within a setting.

我成功地创建了play项目,但当我使用play运行时,它会显示异常

[info] Loading project definition from H:\MyPlay\project
H:\MyPlay\build.sbt:8: error: ')' expected but eof found.
cache
   ^
[error] Error parsing expression.  Ensure that there are no blank lines within a
setting.
Project loading failed: (r)etry, (q)uit, (l)ast, or (i)gnore? i
[warn] Ignoring load failure: no project loaded.
[error] Not a valid command: run
[error] run
[error]    ^

请帮助我,提前谢谢

可能,您在build.sbt文件中使用了任何空格或新行

libraryDependencies ++= Seq(
 jdbc,
 anorm,
  cache


 )
换成

libraryDependencies ++= Seq(
 jdbc,
 anorm,
  cache  
  )     

这会解决你的问题

我会处理的。顺便说一句