After reading and re-reading some Maven documentation, I learned
something that may help people struggling with learning multi-module
projects using Hupa.
In Hupa's hupa-parent POM, I see
<modules>
<module>shared</module>
<module>client</module>
<module>server</module>
<module>widgets</module>
</modules>
But I would expect
<modules>
<module>hupa-shared</module>
<module>hupa-client</module>
<module>hupa-server</module>
<module>hupa-widgets</module>
</modules>
This is because "by practice, we use the module's artifactId as the
module directory's name" according to
http://maven.apache.org/guides/introduction/introduction-to-the-pom.html
I took this for granted and forgot that the the value in
<module></module> is a directory (relative to the parent POM
location), not the module's artifact id. Nothing wrong with Hupa,
just something to remember.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---