On 3/27/06, Brandon Goodin <[EMAIL PROTECTED]> wrote: > What are all the other directories for? The current directory only > contains a pom.xml. I'm curious if someone can explain what all the > other modules represent.
It's Subversion magic. :) The 'current' directory has svn:externals definitions that will pull in the 'trunk' of the other modules: /svn/myfaces/current $ svn propget svn:externals . core https://svn.apache.org/repos/asf/myfaces/core/trunk maven https://svn.apache.org/repos/asf/myfaces/maven/trunk site https://svn.apache.org/repos/asf/myfaces/site/trunk tomahawk https://svn.apache.org/repos/asf/myfaces/tomahawk/trunk shared https://svn.apache.org/repos/asf/myfaces/shared/trunk So when you check out 'current', you'll get everything. There is some information on the Maven build here: http://wiki.apache.org/myfaces/Building_With_Maven HTH, -- Wendy

