Building multi-module sites

Running mvn site on a top level project, maven will build all sites for every module defined in the modules section of the pom individually. Note that each site is generated in each individual project's target location. As a result, relative links between different modules will NOT work. They will however work when you deploy or stage the site.

Staging and deploying

To preview the whole tree of a multi-module site, you can use the site:stage goal. This will build the whole site and copy individual sites to their proper place at the staging location.

site:deploy does the same thing as site:stage but uses the url defined in the <distributionManagement> element of the pom as deployment location. This is usually a remote url, but both scp and file protocols are supported.

Finally, site:stage-deploy does the same thing as site:deploy but uses the stagingDirectory parameter as deployment location. This can be used to deploy the site to a remote staging area (site:stage is always local).

Note: If subprojects inherit the site URL from a parent POM, they will automatically append their artifactId to form their effective deployment location. This goes for both the project url and the url defined in the <distributionManagement> element of the pom. If your multi-module tree does not follow the maven conventions, or if module directories are named differently than module artifacts, you have to specify the url's for each child project. See also How does the Site Plugin use the <url> element in the POM?.

Inheritance

Site descriptors are inherited along the same lines as project descriptors are. If you want your project's site descriptor to be inherited, you need to attach it to the project's main artifact. You use the site:attach-descriptor goal to attach the site descriptor to your project's main artifact.

In Maven 3 you must attach the site descriptor yourself, even for projects with packaging set to "pom".

By default, all the parent descriptor settings are inherited with the only exception of menus, see below. From the body, the links and breadcrumbs accumulate to contain all the parent's site descriptor links and breadcrumbs. If the parent contains some breadcrumb and the inheriting site descriptor doesn't, a breadcrumb with the current site descriptor's name will be added automatically.

However, it is possible to inherit menus as well. To do so, use the inherit attribute in the site descriptor. This can be either top or bottom, indicating where the inherited menu will be placed. For example:

<project>
  ...
  <body>
    ...
    <menu name="My Inherited Menu" inherit="top">
      ...
    </menu>
    ...
  </body>
  ...
</project>