The Mojo team is pleased to announce the release of both the Mojo-Parent
version 27 and Mojo-Sandbox-parent version 8.
Main reason for this release is the finetuning of the maven-site-plugin by
excluding commons-logging. This way we can work around MSITE-459.
This issue occcurs when you try to execute a site-deploy.
There's a new profile for Maven3, which will trigger the right version of the
maven-site-plugin.
To use this parent, simply update the version in your mojo-project
configuration:
<parent>
<groupId>org.codehaus.mojo</groupId>
<artifactId>mojo-parent</artifactId>
<version>27</version>
</parent>
For sandbox-projects, use the following configuration:
<parent>
<groupId>org.codehaus.mojo</groupId>
<artifactId>mojo-sandbox-parent</artifactId>
<version>8</version>
</parent>
Enjoy!
- Robert Scholte