Bonjour Bonjour,
Je me suis actuellement lancé dans l'expérience d'un projet GWT couplé à Maven.
J'ai un petit (gros) problème concernant les tests, car j'ai une classe de test dans mon projet (qui étend de GWTTestCase). Cependant lorsque je fais maven-install où maven-test, il me dit qu'aucun tests n'est présent (There are no tests to run). Je ne comprends vraiment pas car dans mon pom.xml j'ai bien précisé la commande test :
<!-- GWT Maven Plugin -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>2.4.0</version>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>test</goal>
</goals>
</execution>
</executions>
<!-- Plugin configuration. There are many available options, see
gwt-maven-plugin documentation at codehaus.org -->
<configuration>
<runTarget>moduleProjectGWT.html</runTarget>
<hostedWebapp>${webappDirectory}</hostedWebapp>
<i18nMessagesBundle>myProjectGWT.client.Messages</i18nMessagesBundle>
</configuration>
</plugin>
Merci d'avance
Partager