As far as I know you need only one GWT maven module that builds the app. 
The rest modules are just regular (platform independent) modules 
(<packaging>jar</packaging>) and the gwt-app module depends on it.

So for the client app u have 2: main GWT module (A) with GWT specific code and 
GWT dependencies and a plain jar module (B) with shared (with server) logic. 
And the A depends on B.

And not forget to add java sources to packaging to module B, otherwise GWT will 
not be able to compile it:

  <build>
    <resources>
      <resource>
        <directory>src/main/java</directory>
        <includes>
          <include>**/*.java</include>
          <include>**/*.gwt.xml</include>
        </includes>
      </resource>
    </resources>
  </build>

-- 
You received this message because you are subscribed to the Google Groups "GWT 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

Reply via email to