Friday, November 14, 2014

Re: some questions regarding maven and modular-webapp

Ok, now I have a GWT app and a generic Java library as separate Maven projects.

Then I have started making a GWT library (to be used in different apps):
  • create the Maven project just like the generic library using "quickstart" as the archetype
  • added the following lines into the pom:
  <resources>
      <resource>
        <directory>src/main/java</directory>
        <includes>
          <include>**/*.java</include>
          <include>**/*.gwt.xml</include>
        </includes>
      </resource>
    </resources>
    

What else do I have to do so that the library code finds the GWT classes?

Thanks
Magnus
 

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

No comments:

Post a Comment