franz see <[EMAIL PROTECTED]> writes: > Good day, > > Correct me if I'm wrong, but that only adds links to the sidebar. However, > the links still do not actually point to the modules (because the output > site of each module are in their own respective modules). Thus, you'd still > have to copy your modules' sites to your main output dir. > > Cheers, > Franz > > > dennisl-2 wrote: >> >> Morgovsky, Alexander (US - Glen Mills) wrote: >>> I have a parent POM which has two modules. Module A's sites get >>> deployed to host/A/. Module B's sites get deployed to host/B/. What do >>> I need to do in the parent POM so that I can have these modules show up >>> in the modules section of the parent pom so that they could be accessed? >>> Thanks. >>
AFAIK, automatic linking works if your parent site gets deployed to host/. Then you would have: In parent src/site/site.xml: <?xml version="1.0" encoding="ISO-8859-1"?> <project name="Muse in Java"> <body> ... <menu name="Components" ref="modules" /> ... </body> </project> In modules src/site/site.xml: <?xml version="1.0" encoding="ISO-8859-1"?> <project name="Muse Parser"> <body> ... <menu name="Muse-in-java" ref="parent" /> </body> </project> HTH -- OQube < software engineering \ génie logiciel > Arnaud Bailly, Dr. \web> http://www.oqube.com --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
