On Nov 30, 2007 6:49 AM, rmatthews <[EMAIL PROTECTED]> wrote: > > I have a multi-module project that produces many artifacts and generates > reports etc. When I am developing I don't wish to rebuild everything every > time. For example if I am working on the code I don't want to generate the > documentation (for inclusion with the distribution file and created using > docbkx rather than generation of the site, which I do have control over via > the site phase) and produce the distributions every time, I simply want to > know that the system still build and tests all run. Similarly when working > on the documentation I would like to simply produce the documentation.
Depending on how the project is organized, you can use profiles to define groups of modules. The 'default' build 'mvn install' would probably be just the code, then you might add -P docs to also build the documentation. If you *only* want to build the documentation, then drop into that module and build from there. -- Wendy --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
