Tuesday, November 2, 2010

GWT Maven Plugin 1.3.2: Manual mode in test phase not detected

My GWT project is using maven and the GWT maven plugin. For the GWT
unit test I'm using the following setup:

<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>1.3.2.google</version>
<executions>
<execution>
<id>(******** development mode ********)</id>
<goals>
<goal>test</goal>
</goals>
<configuration>
<logLevel>INFO</logLevel>
<extraJvmArgs>-Xmx512m</extraJvmArgs>
<manualMode>false</manualMode>
<productionMode>false</productionMode>
<gwtVersion>${gwt.version}</gwtVersion>
<module>name.pehl.piriti.PiritiTest</module>
<includes>name/pehl/piriti/
PiritiCoreGwtTestSuite.java</includes>
</configuration>
</execution>
<execution>
<id>(******** production mode ********)</id>
<goals>
<goal>test</goal>
</goals>
<configuration>
<logLevel>INFO</logLevel>
<extraJvmArgs>-Xmx512m</extraJvmArgs>
<manualMode>false</manualMode>
<productionMode>true</productionMode>
<gwtVersion>${gwt.version}</gwtVersion>
<module>name.pehl.piriti.PiritiTest</module>
<includes>name/pehl/piriti/
PiritiCoreGwtTestSuite.java</includes>
</configuration>
</execution>
</executions>
</plugin>

Although setting manualMode to false, the GWT tests prompt to enter an
URL:
Please navigate your browser to this URL:
...

Can anyone confirm this behaviour?

- Harald

--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to google-web-toolkit+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.

No comments:

Post a Comment