Reputation: 13753
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
Reputation: 13753
In my build.sbt
fork in run := true
I changed it to false
. Now its working.
Upvotes: 1