Reputation: 11734
For the developer mode software that launches from the GWT plugin. How can I provide additional parameters?
E.g. I want to pass the bindAddress to the gwt plugin so I can debug from a remote machine:
I run this command:
mvn gwt:debug -Dgwt.noserver=true
Can you add parameters in the pom to bind the address.
Upvotes: 1
Views: 1318
Reputation: 64541
You can set both bindAddress
and noserver
in your POM if you like:
<bindAddress>0.0.0.0</bindAddress>
<noServer>true</noServer>
See gwt-maven-plugin
Upvotes: 3