You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by jd...@apache.org on 2006/08/29 04:09:45 UTC

svn commit: r437912 - /geronimo/genesis/trunk/plugins/tools-maven-plugin/src/site/apt/usage.apt

Author: jdillon
Date: Mon Aug 28 19:09:45 2006
New Revision: 437912

URL: http://svn.apache.org/viewvc?rev=437912&view=rev
Log:
Update usage to show how to configure gpg-sign-attached

Modified:
    geronimo/genesis/trunk/plugins/tools-maven-plugin/src/site/apt/usage.apt

Modified: geronimo/genesis/trunk/plugins/tools-maven-plugin/src/site/apt/usage.apt
URL: http://svn.apache.org/viewvc/geronimo/genesis/trunk/plugins/tools-maven-plugin/src/site/apt/usage.apt?rev=437912&r1=437911&r2=437912&view=diff
==============================================================================
--- geronimo/genesis/trunk/plugins/tools-maven-plugin/src/site/apt/usage.apt (original)
+++ geronimo/genesis/trunk/plugins/tools-maven-plugin/src/site/apt/usage.apt Mon Aug 28 19:09:45 2006
@@ -106,3 +106,27 @@
     </executions>
 </plugin>
 +----------+
+
+* Sign artifacts with GnuPG
+
+ Signs all of a project's attached artifacts with GnuPG.
+
+ You need to specify the passphrase with a <<<-Dpassphrase=thephrase>>> on the command line.
+ <<<gpg>>> also needs to be on the search path.
+
++----------+
+<plugin>
+    <groupId>org.apache.geronimo.genesis.plugins</groupId>
+    <artifactId>tools-maven-plugin</artifactId>
+    <executions>
+        <execution>
+            <id>sign-artifacts</id>
+            <phase>package</phase>
+            <goals>
+                <goal>gpg-sign-attached</goal>
+            </goals>
+        </execution>
+    </executions>
+</plugin>
++----------+
+