Hi,
I'm using GWT 2.4 with Maven 3.0.3. Is there any way I can set up my
GWT tests (i.e. files that extend GwtTestCase) such that if I specify
the command line skip statement "-Dmaven.test.skip=true", my GWT tests
will also be skipepd? Right now, I have my GWT-Maven plugin
configured like so ...
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>${gwtVersion}</version>
<executions>
<execution>
<id>clean-compile</id>
<goals>
<goal>clean</goal>
<goal>compile</goal>
</goals>
</execution>
<execution>
<id>run-gwt-tests</id>
<phase>test</phase>
<goals>
<goal>test</goal>
</goals>
</execution>
</executions>
<!-- Plugin configuration. There are many
available options, see
gwt-maven-plugin
documentation at codehaus.org -->
<configuration>
<!-- <logLevel>DEBUG</logLevel> -->
<runTarget>index.html</runTarget>
<hostedWebapp>${webappDirectory}</hostedWebapp>
<i18nMessagesBundle>com.cme.clearing.product.client.Messages</
i18nMessagesBundle>
</configuration>
</plugin>
GWT tests run anyway, even if I specify that tests be skipped,
probably because they don't fall under the same domain as normal
surefire tests. Thanks, - Dave
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en.