Description
The plugin documentation suggests the following on page http://maven.apache.org/plugins/maven-changes-plugin/usage.html
Note: To use the JIRA Report, the <issueManagement> section in the pom.xml of your project must be configured. It might look something like this:
<project>
...
<issueManagement>
<system>JIRA</system>
<url>http://jira.codehaus.org/BrowseProject.jspa?id=10450</url>
</issueManagement>
...
</project>
As a matter of fact the suggest format is only supported up to version 2.7.1 of the changes plugin and later versions (2.8/2.9) will enforce an URL format like this:
<project>
...
<issueManagement>
<system>JIRA</system>
<url>http://jira.codehaus.org/browse/MCHANGES</url>
</issueManagement>
...
</project>
The current documentation is misleading and should be changed accordingly.