You are viewing a plain text version of this content. The canonical link for it is here.
Posted to torque-dev@db.apache.org by tf...@apache.org on 2012/07/26 02:47:04 UTC

svn commit: r1365855 - /db/torque/torque4/trunk/torque-site/src/site/xdoc/developer-info/developer-guide.xml

Author: tfischer
Date: Thu Jul 26 00:47:03 2012
New Revision: 1365855

URL: http://svn.apache.org/viewvc?rev=1365855&view=rev
Log:
added gpg plugin information

Modified:
    db/torque/torque4/trunk/torque-site/src/site/xdoc/developer-info/developer-guide.xml

Modified: db/torque/torque4/trunk/torque-site/src/site/xdoc/developer-info/developer-guide.xml
URL: http://svn.apache.org/viewvc/db/torque/torque4/trunk/torque-site/src/site/xdoc/developer-info/developer-guide.xml?rev=1365855&r1=1365854&r2=1365855&view=diff
==============================================================================
--- db/torque/torque4/trunk/torque-site/src/site/xdoc/developer-info/developer-guide.xml (original)
+++ db/torque/torque4/trunk/torque-site/src/site/xdoc/developer-info/developer-guide.xml Thu Jul 26 00:47:03 2012
@@ -75,11 +75,34 @@
       </p>
     </section>
 
-    <section name="Building a release">
+    <section name="Building a release / release candidate">
       <p>
         Run <code>mvn -Prelease clean install</code> to build a release
         and install the artifacts in your local maven repository.
+        This will also run gpg to sign all created artifacts. For this to work,
+        you need <a href="www.gnupg.org/">gpg</a> installed.
+        Possibly, you need to change some gpg defaults. This can be done in
+        the profiles section of the maven configuration file settings.xml.
+        E. g.
       </p>
+<source><![CDATA[
+  <profiles>
+    <profile>
+      <id>gnupg</id>
+      <properties>
+        <gpg.publicKeyring>${location of public keyring}</gpg.publicKeyring>
+        <gpg.secretKeyring>${location of secret keyring}</gpg.secretKeyring>
+        <gpg.keyname>${id of gpg key used for signing}</gpg.keyname>
+        <gpg.passphrase>${your key passphrase. Not a recommended setting to store passphrase as clear text.}</gpg.passphrase>
+        <gpg.useagent>${true or false}</gpg.useagent>
+      </properties>
+    </profile>
+  </profiles>
+
+  <activeProfiles>
+    <activeProfile>gnupg</activeProfile>
+  </activeProfiles>
+      ]]></source>
     </section>
 
     <section name="Deploying a release">



---------------------------------------------------------------------
To unsubscribe, e-mail: torque-dev-unsubscribe@db.apache.org
For additional commands, e-mail: torque-dev-help@db.apache.org