Module B
--------
<inherits name="org.test.modulea.ModuleA"/>
However we are finding we need to duplicate the client.resources
package in ModuleB as well.
From what I have read and understand I believe this is caused by the
relative "source" URI being prefixed with ModuleB's name and hence
they are being looked for in org.test.moduleb.client.resources.images.
Looking at Google's examples images appear to always be in the same
package as the code needing them with no use of "@Source". This I
suspect removes the URI issue.
I'd love to hear what is thought as best practice and how to avoid the
re-use problem we have.