<inherited>false seems to work fine. However, the plugin is called too soon. The children projects are compiled after the plugin being executed...
The idea of doing another project depending on the others seems feasible. Just need to make sure I can then upload this final project to the maven repository as is. Anyone already did that? About the post scriptum, it is me being silly. They are generated. It's just the URL reference from the parent that is wrong... Which is normal since the site is not deployed.
I want to build a final jar merging the binary files from all my projects. The initial idea was to add an ant task in the parent project that does that but since this task is called for all sub-projects, it doesn't work.
If you're doing it with a plugin execution, try setting <inherited>false.
P.S.: Not related but, how do I manage to have all sub-projects' sites generated when calling "mvn site" in the root dir?
That should already be happening. The sites will be under target/site for each module. If you want to see it all together, deploy the site or use siteStaging. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
