Hi all, I'm trying to use the maven gwt plugin with GWT 1.6.4 with the noserver option. When I'm executed the mvn command 'gwt:run', the url is not correct, it forgets the module name.
In my case it is http://localhost:8080/JcrBrowserApplication.html instead of http://localhost:8080/org.apache.sling.browser.JcrBrowserApplication/JcrBrowserApplication.html but I specify the module name in the runTarget option. Is it a bug or do I have to use another setting ? here is my plugin definition. Thanks, Christophe <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>gwt-maven-plugin</artifactId> <version>1.1-SNAPSHOT</version> <configuration> <gwtVersion>${gwt.version}</gwtVersion> <noServer>${gwt.noserver}</noServer> <port>${gwt.port}</port> <runTarget>org.apache.sling.browser.JcrBrowserApplication/JcrBrowserApplication.html</runTarget> <!-- i18nConstantsWithLookup>false</i18nConstantsWithLookup --> <extraJvmArgs>-Xmx512m -Xss1024k</extraJvmArgs> </configuration> <executions> <execution> <goals> <goal>compile</goal> <!-- goal>generateAsync</goal> <goal>eclipse</goal> <goal>eclipseTest</goal --> </goals> </execution> </executions> </plugin>