I am currently writing a GWT application through Eclipse. Eclipse is used for development, but I use the m2eclipse plugin and Maven pom.xml with the GWT plugin to create and run it.
When I need to debug an application, I have to:
- Call "Run As ..." in the Maven project (via m2eclipse) "war: exploded gwt: debug". This starts the GWT application server and waits for a remote debugging connection on port 3408. The need to wait until the WAR is detonated means that this may be a minute for this.
- Call the "Debug As ..." Remote Java application to connect to the server.
I already added both goals to my favorites to block them in the drop-down list, but it's still a pain.
I would like to run them in a one-click sequence, and not from two discrete actions.
Is there a way in Eclipse to achieve this?
java eclipse gwt
locka
source share