Bonjour,

Les fichiers bundles de mon application GWT se trouvent dans src/main/resources.

Je n'arrive pas à configurer le plugin gwt-maven pour qu'il trouve ces fichiers.
Par défaut il va les chercher dans src/main/java.

Voila la conf du plug in GWT:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>gwt-maven-plugin</artifactId>
        <executions>
          <execution>
            <goals>
              <goal>compile</goal>
              <goal>test</goal>
<!--
              <goal>i18n</goal>
              <goal>generateAsync</goal>
-->
            </goals>
          </execution>
        </executions>
        <!-- Plugin configuration. There are many available options, see 
          gwt-maven-plugin documentation at codehaus.org -->
        <configuration>
          <runTarget>FrontOffice.html</runTarget>
          <hostedWebapp>${webappDirectory}</hostedWebapp>
          <i18nMessagesBundle>com.btc.rbm.fo.webapp.client.FrontOfficeMsg</i18nMessagesBundle>
		  <generateDirectory>${project.basedir}/src/generated/java</generateDirectory>
        </configuration>
      </plugin>
Une idée ?
merci !

Résolu : il y avait une erreur de frappe dans un fichier de conf....