> If you do not have server-side code in Java, then you can just start the
> DevMode in -noserver- mode and point it to your "Go" server, seehttp://
code.google.com/webtoolkit/doc/latest/DevGuideCompilingAndDebu...
To accomplish this I use Maven's GWT plugin with the following config:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>2.2.0</version>
<configuration>
<logLevel>INFO</logLevel>
<noServer>true</noServer>
<!-- .. -->
</plugin>
After "mvn gwt:run" I get the Dev Mode Console but after clicking on
"Launch Default Browser" the browser popups with
http://127.0.0.1:8888/commander/index.html?gwt.codesvr=127.0.0.1:9997
Calling the GWT container page manually leads to
"GWT module 'commander' may need to be (re)compiled"
...no matter whether I call the GWT container page via file:/// or http://
Executing the result of "mvn gwt:compile" works fine. But that's the
production code that takes minutes to compile.
Any tips how I can use the -noserver with Maven or IntelliJ (I don't
use Eclipse)?