Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.