I've a maven project deployed in jetty 9 server. I'm running jetty server with following options.
java -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005 -jar /home/shwetanka/tools/jetty-distribution-9.2.3.v20140905/start.jar
I've configured a remote configuration with
When I start debugger. It says
Connected to the target VM, address: 'localhost:5005', transport: 'socket'
But breakpoint remains in 'enabled' state(without any check mark) and doesn't stop on reaching the break point. I tried making the project again but it says all classes are up to date. nothing to reload. I tried restarting idea and also invalidating the cache. Nothing seems to be working. How do I make it work?