When maven starts tests using gwt-maven-plugin, it firing up server, and use wrong ip, in my case
Starting http://10.0.14.67:60281/com.something.GwtTest.JUnit/junit-standards.html?gwt.codesvr=10.0.14.67:60278 on browser FF17
and get access denied error. I want it to start tests on 127.0.0.1, but dont know how. BUT if i run gwt plugin, not gwt:test but gwt:run it starts on 127.0.0.1 and all works fine! i have such config in maven plugin
<failOnError>true</failOnError>
<runTarget>http://127.0.0.1:8080/</runTarget>
<hostedWebapp>${project.build.directory}/${project.build.finalName}-gwt</hostedWebapp>
<noServer>true</noServer>
<includes>**/*TestSuiteGWT.java</includes>
<mode>htmlunit</mode>
So how i can make it start tests on same 127.0.0.1 ?