Site - Multi-Module
Links
Hudson - Maven Site, hudson/maven-site.
Deploy
To view the site generated from a multi module project using the site staging facility:
mvn clean install
mvn site:stage -DstagingDirectory=C:\temp\site
Note:
We have to run the
install
goal first to create the project artifacts which the site needs to build correctly. For more information see http://jira.codehaus.org/browse/MNG-2979, Cross module dependencies for multi-module site.The
site:stage
goal is not working for me. See the notes dated 26/09/2008 16:41:15 below for more information.Note: Hudson makes site generation nice and simple. For details, see Hudson - Maven Site, hudson/maven-site.
Setup
Parent
Add the following element to the
site.xml
file:<menu ref="modules" /> <menu ref="reports" />
Set-up the reports so they work correctly with aggregation. Here is a sample reports section:
../../misc/howto/maven/pom-standard-reports-multi-module.xml
Module
Remove the
url
tag from thepom.xml
file.Create a simple
site.xml
file:<?xml version="1.0" encoding="ISO-8859-1"?> <project> <body> <menu ref="parent" /> <menu ref="reports" /> </body> </project>
The other attributes should be inherited from the parent.
Create an
index.apt
file insrc/site/apt/
. In this file add a simple description of the module.
Issues
27/04/2007 11:22
The cobertura and cross reference reports are not working in the multi-module site.
Cobertura
Cross Reference
This may just be an issue when using site:stage
. The JXR files are
generated correctly when you run the site
goal.
02/09/2008 17:10:46
[WARNING] DEPRECATED [aggregate]: As of version 2.5, use the goals
<code>javadoc:aggregate</code> and <code>javadoc:test-aggregate</code> instead.
26/09/2008 16:41:15
The site:stage
goal is really not working for me.
I tried site site:deploy
with a simple file in the
distributionManagement
section of the pom.xml
file:
<distributionManagement>
<site>
<id>website</id>
<url>file:///home/patrick/temp/site/</url>
</site>
</distributionManagement>
…the links from the parent index.html
file are now pointing correctly to
the modules.
08/10/2009 06:23:30
I was getting problems building the Maven site on our Hudson multi-module project. Looks like this person had the same issues, but has found a solution: