Berlin Brown
Berlin Brown

Reputation: 11734

Add extra parameters to the gwt-maven-plugin for the DEV mode

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

Answers (1)

Thomas Broyer
Thomas Broyer

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

Related Questions