On Dec 2, 2007 1:08 AM, urir <[EMAIL PROTECTED]> wrote: > Is there any archetype exists that automatically creates the simple > multi-module project? > The expected result would be an empty directory, with a single pom.xml that > has <packaging>pom</packaging> element (and may also have the junit > dependency)
The best you can do with the current archetype plugin is establish the parent pom, then run 'mvn archetype:create ...' multiple times. It will add a module to the parent pom and make that pom the parent of the new module for you. You can package up multiple modules in a single archetype, but you lose the ability to specify the package for the Java code, etc. This may be improved in the ArchetypeNG code that is still in the sandbox. -- Wendy --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
