Dev
Dev

Reputation: 13753

unable to debug play framwork 2.x in Scala IDE

I have a project with java & scala classes. I want to debug this project in Scala IDE.

I run this command at my application end

./activator -jvm-debug 9999 run

And debug in Scala IDE as Remote Java Application with localhost & port 9999.

It did not stop at my breakpoints.

Any pointers on this.

Upvotes: 0

Views: 56

Answers (1)

Dev
Dev

Reputation: 13753

In my build.sbt

fork in run := true

I changed it to false. Now its working.

Upvotes: 1

Related Questions