Author: rfscholte Date: Mon May 21 20:00:03 2012 New Revision: 1341180 URL: http://svn.apache.org/viewvc?rev=1341180&view=rev Log: Add FAQ for MRELEASE-156
Modified: maven/release/trunk/maven-release-plugin/src/site/fml/faq.fml Modified: maven/release/trunk/maven-release-plugin/src/site/fml/faq.fml URL: http://svn.apache.org/viewvc/maven/release/trunk/maven-release-plugin/src/site/fml/faq.fml?rev=1341180&r1=1341179&r2=1341180&view=diff ============================================================================== --- maven/release/trunk/maven-release-plugin/src/site/fml/faq.fml (original) +++ maven/release/trunk/maven-release-plugin/src/site/fml/faq.fml Mon May 21 20:00:03 2012 @@ -64,6 +64,14 @@ mvn -N -Darguments=-N release:perform </source> </answer> </faq> + <faq id="scmCommentPrefix"> <!-- MRELEASE-156 --> + <question>How can I customize the comment prefix of a commit during release preparation?</question> + <answer>By default the plugin will prefix the comment with <pre>[maven-release-plugin] </pre>. + You can change this by adding <pre>-DscmCommentPrefix=#42</pre> to the Maven command. + If you need to end this with a linebreak, add <pre>ALT 10</pre>(=Line Feed) and/or <pre>ALT 13</pre> (=Carriage Return) depending on the operating system. + If the comment prefix contains whitespace characters, surround the argument with quotes. + </answer> + </faq> <faq id="inheritScm"> <question>Why is <code>release:prepare</code> failing when trying to tag with <code>"svn: Path '...' does not exist in revision ..."</code></question>