How can I run a GWT app from gwt-maven-plugin without any browser plugins?
gwt, jakarta-ee, java, maven-plugin
Solution
After configuring gwt-maven plugin you could simply run the following.
`mvn jetty:run-war`
After gwt compilation the resulting war will be placed in jetty and started via Maven Jetty Plugin.
Problem
For a GWT application which I build with the GWT Maven Plugin (gwt-maven-plugin), I can run the GWT Development environment with mvn compile war:exploded gwt:run and then launch a browser. This requires that the browser provides the GWT Developer Plugin. (Firefox 6 for example does not yet support the GWT Plugin). Does the GWT Maven Plugin also allow to simply run the included Jetty container with the GWT application, without a development mode?