Maven News Plugin

This plugin provides functionality for adding a news report to your Maven site. Simply add a news.xml file to your xdocs folder with format:

<document>
  <body>
    <news>
      <entry name="05.04.2005">
        <p>My second news</p>
      </entry>
      <entry name="18.03.2005">
        <p>My first news</p>
      </entry>
    </news>
  </body>
</document>
You may also add additional xdocs elements to the news.xml file:

<document>
  <body>
    <section name="Current status (05.04.2005)">
      <p>Plugin is currently under revision.</p>
    </section>
    <news>
      ..entries..
    </news>
  </body>
</document>
In addition, add the following line to your reports section in POM:
<reports>
	...
	<report>maven-news-plugin</report>
	...
</reports>
An example of the plugin result can be found under here.

For more information on the functionality provided by this plugin, please see the Goals document.

For more information on how to customise the functionality provided by this plugin, please see the Properties document.