Return-Path: Delivered-To: apmail-geronimo-activemq-commits-archive@www.apache.org Received: (qmail 84838 invoked from network); 5 Jul 2006 16:30:08 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 5 Jul 2006 16:30:08 -0000 Received: (qmail 59155 invoked by uid 500); 5 Jul 2006 16:30:08 -0000 Delivered-To: apmail-geronimo-activemq-commits-archive@geronimo.apache.org Received: (qmail 59114 invoked by uid 500); 5 Jul 2006 16:30:07 -0000 Mailing-List: contact activemq-commits-help@geronimo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: activemq-dev@geronimo.apache.org Delivered-To: mailing list activemq-commits@geronimo.apache.org Received: (qmail 59105 invoked by uid 99); 5 Jul 2006 16:30:07 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 05 Jul 2006 09:30:07 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [140.211.166.113] (HELO eris.apache.org) (140.211.166.113) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 05 Jul 2006 09:30:05 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 8A1401A981A; Wed, 5 Jul 2006 09:29:45 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r419272 - /incubator/activemq/site/release-guide.html Date: Wed, 05 Jul 2006 16:29:45 -0000 To: activemq-commits@geronimo.apache.org From: jstrachan@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20060705162945.8A1401A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: jstrachan Date: Wed Jul 5 09:29:43 2006 New Revision: 419272 URL: http://svn.apache.org/viewvc?rev=419272&view=rev Log: Latest export from confluence Modified: incubator/activemq/site/release-guide.html Modified: incubator/activemq/site/release-guide.html URL: http://svn.apache.org/viewvc/incubator/activemq/site/release-guide.html?rev=419272&r1=419271&r2=419272&view=diff ============================================================================== --- incubator/activemq/site/release-guide.html (original) +++ incubator/activemq/site/release-guide.html Wed Jul 5 09:29:43 2006 @@ -246,8 +246,41 @@ -
-

How to create and announce an ActiveMQ release.

+

How to create and announce an ActiveMQ release.

+ +

Maven 2 Setup

+ +

Before you deploy anything to the maven repository using Maven 2, you should configure your ~/.m2/settings.xml file
+so that the file permissions of the deployed artifacts are group writeable. If you do not do this, other developers will not able to overwrite your SNAPSHOT releases with newer versions.

+ +
+
<settings>
+  ...
+  <servers>
+
+    <server>
+      <id>apache-repo</id>
+      <username>chirino</username>
+      <directoryPermissions>775</directoryPermissions>
+      <filePermissions>664</filePermissions>
+    </server>
+    <server>
+      <id>apache-snapshots</id>
+      <username>chirino</username>
+      <directoryPermissions>775</directoryPermissions>
+      <filePermissions>664</filePermissions>
+    </server>
+    <server>
+      <id>apache-website</id>
+      <username>chirino</username>
+      <directoryPermissions>775</directoryPermissions>
+      <filePermissions>664</filePermissions>
+    </server>
+
+  </servers>
+  ...
+</settings>
+

Creating the ActiveMQ Release

@@ -308,8 +341,8 @@