The Maven team is pleased to announce the release of the Maven Site
Plugin, version 2.0
The Site Plugin is used to generate a site for the project. The
generated site also includes the project's reports that were configured
in the <reporting> section of the POM.
http://maven.apache.org/plugins/maven-site-plugin/You should specify the version in your project's plugin configuration:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>2.0</version>
</plugin>
Release Notes - Maven 2.x Site Plugin - Version 2.0
** Bug
* [MSITE-129] - modules list empty if modules don't use this project
as parent in reactor build
* [MSITE-136] - when inheriting site.xml the <menu ref='parent'>
expands to a menu with links for *all* ancestors and not just the
immediate parent
* [MSITE-150] - Inconsistent navigational mechanisms: If project
defines its own index page (e.g. apt/index.apt) the Project
Information->About link is missing.
* [MSITE-163] - The modules menu is not inherited if the parent
project has no modules of its own
* [MSITE-180] - Missing url tag in (parent) pom make it ignore the
site inheritence system
* [MSITE-238] - multi project default URL is wrong
* [MSITE-275] - site:stage for multimodule project creates wrong links
* [MSITE-311] - NPE on absolute URLs if project.url not defined
* [MSITE-320] - Reference documentation
* [MSITE-362] - Site upload is not compatible with sourceforge.net
changes
* [MSITE-384] - site:stage-deploy fails on Windows for projects with
3 levels of modules
* [MSITE-386] - site is generated with empty site.css file
** Improvement
* [MSITE-132] - Use <artifactId> instead of <name> for staged
directories
* [MSITE-287] - Clarify/fix documentation about encoding for
translated resource bundles.
* [MSITE-349] - Update this plugin's site documentation page:
"Configuring the Site Descriptor" to include the <version> element
* [MSITE-350] - site:deploy not verbose enough, not, _at all_ with -X
* [MSITE-351] - New language - Portuguese (Portugal)
* [MSITE-352] - Link to L10n Status Report for Project Info Reports
Plugin
* [MSITE-382] - Add localization for zh_TW
** New Feature
* [MSITE-340] - use ${project.reporting.outputEncoding} as default
value for "outputEncoding" parameter and default to UTF-8
** Task
* [MSITE-101] - schedule and release doxia 1.0
* [MSITE-242] - remove copy of plexus-utils sources from site plugin
sources since it is a dependency
* [MSITE-355] - Upgrade to Wagon 1.0-beta-4
* [MSITE-388] - Update to maven-doxia-tools 1.0.2
Enjoy,
-The Maven team