Author: aheritier
Date: Sun Apr 15 13:57:54 2007
New Revision: 529070

URL: http://svn.apache.org/viewvc?view=rev&rev=529070
Log:
Doc improvement

Modified:
    maven/maven-1/plugins/trunk/artifact/xdocs/properties.xml

Modified: maven/maven-1/plugins/trunk/artifact/xdocs/properties.xml
URL: 
http://svn.apache.org/viewvc/maven/maven-1/plugins/trunk/artifact/xdocs/properties.xml?view=diff&rev=529070&r1=529069&r2=529070
==============================================================================
--- maven/maven-1/plugins/trunk/artifact/xdocs/properties.xml (original)
+++ maven/maven-1/plugins/trunk/artifact/xdocs/properties.xml Sun Apr 15 
13:57:54 2007
@@ -183,12 +183,17 @@
         </table>
       </subsection>
     </section>
-    <section name="Sign Artifacts - GPG Settings">
+    <section name="Generate a code signing key (OpenPGP Compatible Signature)">
       <p>
         The artifact plugin allows to automatically sign your artifacts with 
GPG when you deploy a release. You'll find
         more informations about signing releases here :
         <a 
href="http://www.apache.org/dev/release-signing.html";>http://www.apache.org/dev/release-signing.html</a>
       </p>
+      <p>
+        You have to install
+        <a href="http://www.gnupg.org/"; #>GNU Privacy Guard</a>
+        for your your platform and add it in your PATH.
+      </p>
       <table>
         <tr>
           <th>Property name</th>
@@ -197,22 +202,40 @@
         </tr>
         <tr>
           <td>maven.artifact.gpg.skip</td>
-          <td>Do you want to skip the signing step? Default : true. Before to 
enable it you have to correctly setup GPG. You need to have a key and 
<code>gpg</code> must be in your PATH.</td>
+          <td>
+            Do you want to skip the signing step? Default : true. Before to 
enable it you have to correctly setup GPG.
+            You need to have a key and
+            <code>gpg</code>
+            must be in your PATH.
+          </td>
           <td>Yes</td>
         </tr>
         <tr>
           <td>maven.artifact.gpg.passphrase</td>
-          <td>The passphrase to use when signing. Default : not defined. If 
not defined and signing activated, the plugin will prompt for the 
passphrase.</td>
+          <td>
+            The passphrase to use when signing. Default : not defined. If not 
defined and signing activated, the plugin
+            will prompt for the passphrase.
+          </td>
           <td>Yes</td>
         </tr>
         <tr>
           <td>maven.artifact.gpg.keyname</td>
-          <td>The "name" of the key to sign with. Passed to gpg as 
<code>--local-user</code>. Default : not defined. The default key is used.</td>
+          <td>
+            The "name" of the key to sign with. Passed to gpg as
+            <code>--local-user</code>
+            . Default : not defined. The default key is used.
+          </td>
           <td>Yes</td>
         </tr>
         <tr>
           <td>maven.artifact.gpg.useagent</td>
-          <td>Passes <code>--use-agent</code> or <code>--no-use-agent</code> 
to gpg. If using an agent, the password is optional as the agent will provide 
it. Default : false.</td>
+          <td>
+            Passes
+            <code>--use-agent</code>
+            or
+            <code>--no-use-agent</code>
+            to gpg. If using an agent, the password is optional as the agent 
will provide it. Default : false.
+          </td>
           <td>Yes</td>
         </tr>
       </table>


Reply via email to