You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by bu...@apache.org on 2012/08/24 18:47:26 UTC

svn commit: r830037 - in /websites/production/cxf/content: cache/main.pageCache release-management.html

Author: buildbot
Date: Fri Aug 24 16:47:26 2012
New Revision: 830037

Log:
Production update by buildbot for cxf

Modified:
    websites/production/cxf/content/cache/main.pageCache
    websites/production/cxf/content/release-management.html

Modified: websites/production/cxf/content/cache/main.pageCache
==============================================================================
Binary files - no diff available.

Modified: websites/production/cxf/content/release-management.html
==============================================================================
--- websites/production/cxf/content/release-management.html (original)
+++ websites/production/cxf/content/release-management.html Fri Aug 24 16:47:26 2012
@@ -162,8 +162,22 @@ Apache CXF -- Release Management
 
 <p>The first step is to update the release_notes.txt in the distribution/src/main/release.  This file's JIRA list of solved Bugs, Improvements, etc. can be obtained from the <a shape="rect" class="external-link" href="https://issues.apache.org/jira/browse/CXF#selectedTab=com.atlassian.jira.plugin.system.project%3Aroadmap-panel">"Road Map" JIRA tab</a>, selecting the desired version's Release Notes, and then the Configure Release Notes button (choose Text output).</p>
 
-<p>Then, to actually perform the relesae, run the below commands.  </p>
-<div class="panelMacro"><table class="noteMacro"><colgroup span="1"><col span="1" width="24"><col span="1"></colgroup><tr><td colspan="1" rowspan="1" valign="top"><img align="middle" src="https://cwiki.apache.org/confluence/images/icons/emoticons/warning.gif" width="16" height="16" alt="" border="0"></td><td colspan="1" rowspan="1">It is suggested to use Maven 2.2.1 for CXF versions &lt;=2.5.x as that has been better tested.   For &gt;=2.6.0, Maven 3 is required.  Also, since CXF supports Java5, it is recommended that the release be done with a Java5 JDK.</td></tr></table></div>
+<div class="panelMacro"><table class="noteMacro"><colgroup span="1"><col span="1" width="24"><col span="1"></colgroup><tr><td colspan="1" rowspan="1" valign="top"><img align="middle" src="https://cwiki.apache.org/confluence/images/icons/emoticons/warning.gif" width="16" height="16" alt="" border="0"></td><td colspan="1" rowspan="1">Don't manually update the POM versions from X.Y.Z-SNAPSHOT to X.Y.Z, the Maven Release Plugin commands below will automatically take care of that.  Also, prior to performing the release you'll need to have your Apache LDAP information configured in your Maven settings.xml file:
+
+<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
+<pre class="code-java">
+...
+&lt;server&gt;                                                                
+   &lt;id&gt;apache.releases.https&lt;/id&gt;
+   &lt;username&gt;apacheID&lt;/username&gt;
+   &lt;password&gt;yourLDAPPassword&lt;/password&gt;
+&lt;/server&gt;
+...
+</pre>
+</div></div></td></tr></table></div>
+
+<p>Then, to actually perform the release, run the below commands.  </p>
+<div class="panelMacro"><table class="noteMacro"><colgroup span="1"><col span="1" width="24"><col span="1"></colgroup><tr><td colspan="1" rowspan="1" valign="top"><img align="middle" src="https://cwiki.apache.org/confluence/images/icons/emoticons/warning.gif" width="16" height="16" alt="" border="0"></td><td colspan="1" rowspan="1">It is suggested to use Maven 2.2.1 for CXF versions &lt;=2.5.x as that has been better tested.   For &gt;=2.6.0, Maven 3 is required.  It's recommended you build the release with the lowest JDK version supported by that particular branch (JDK 6 with CXF 2.7.x, JDK 5 for older releases).</td></tr></table></div>
 <div class="preformatted panel" style="border-width: 1px;"><div class="preformattedContent panelContent">
 <pre>mvn release:prepare -Peverything,jaxws22
 mvn release:perform