Author: bimargulies
Date: Sun Jun 5 16:36:50 2011
New Revision: 1132453
URL: http://svn.apache.org/viewvc?rev=1132453&view=rev
Log:
[MCHANGES-245]: add more documwntation for new issueTypes parameter on
announcements
Modified:
maven/plugins/trunk/maven-changes-plugin/src/site/apt/usage.apt.vm
Modified: maven/plugins/trunk/maven-changes-plugin/src/site/apt/usage.apt.vm
URL:
http://svn.apache.org/viewvc/maven/plugins/trunk/maven-changes-plugin/src/site/apt/usage.apt.vm?rev=1132453&r1=1132452&r2=1132453&view=diff
==============================================================================
--- maven/plugins/trunk/maven-changes-plugin/src/site/apt/usage.apt.vm
(original)
+++ maven/plugins/trunk/maven-changes-plugin/src/site/apt/usage.apt.vm Sun Jun
5 16:36:50 2011
@@ -243,6 +243,15 @@ mvn site
For info on how to change the sender of the email see the
{{{./examples/specifying-mail-sender.html}Specifying the mail sender}}
example.
+
+ If you have customizations for JIRA that add additional issue types,
+ or if you are using an IMS that isn't fully-supported in this plugin,
+ you will need to configure any additional issue types here.
+
+ For each issue type, you have to map it to one of three action types:
+ <add>, <fix>, or <update>. These terms are a bit arbitrary. By default, for
JIRA,
+ <add> corresponds to 'New Feature', <fix> corresponds to 'Bug', and <update>
+ corresponds to 'Improvement'.
-------------------
<project>
@@ -262,6 +271,11 @@ mvn site
<toAddress
implementation="java.lang.String">[email protected]</toAddress>
</toAddresses>
...
+ <issueTypes>
+ <add>Story</add>
+ <fix>Defect, Malfunction</fix>
+ </issueTypes>
+ ...
</configuration>
</plugin>
</plugins>