I'm trying to debug a Play 2.0 sub-project.
My configuration looks like this:
lazy val subWeb = PlayProject(
"web",
appVersion,
appDependencies,
path = file("web"),
mainLang = SCALA
).settings(
// some custom settings here
).configs(RunDebug).settings(inConfig(RunDebug)(Defaults.configTasks ++ PlayProject.defaultSettings):_*)
.settings(
javaOptions in RunDebug ++= Seq("-Xdebug", "-Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=9999"),
fork in RunDebug := true,
mainClass in (RunDebug, run) := Some("play.core.server.NettyServer"),
commands in RunDebug ++= Seq(PlayProject.playRunCommand)
).dependsOn(subModule1, subModule2)
But then debug:run directly starts the Web server with debug, without the ability to stop with ^D and go back to SBT and without the recompile-on-source-change option.