You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2012/08/09 17:16:11 UTC

svn commit: r1371249 - /maven/site/branches/INFRA-4466/trunk/content/apt/developers/release/maven-plugin-release.apt

Author: hboutemy
Date: Thu Aug  9 15:16:11 2012
New Revision: 1371249

URL: http://svn.apache.org/viewvc?rev=1371249&view=rev
Log:
updated release instructions with .htaccess rewrite rule method, which is more convenient than svn symlink

Modified:
    maven/site/branches/INFRA-4466/trunk/content/apt/developers/release/maven-plugin-release.apt

Modified: maven/site/branches/INFRA-4466/trunk/content/apt/developers/release/maven-plugin-release.apt
URL: http://svn.apache.org/viewvc/maven/site/branches/INFRA-4466/trunk/content/apt/developers/release/maven-plugin-release.apt?rev=1371249&r1=1371248&r2=1371249&view=diff
==============================================================================
--- maven/site/branches/INFRA-4466/trunk/content/apt/developers/release/maven-plugin-release.apt (original)
+++ maven/site/branches/INFRA-4466/trunk/content/apt/developers/release/maven-plugin-release.apt Thu Aug  9 15:16:11 2012
@@ -45,9 +45,10 @@ Releasing A Maven Plugin
 
 +------+
 cd target/checkout
-#mvn site-deploy -Preporting
+
 mvn -Preporting site site:stage scm-publish:publish-scm \
     -Dscmpublish.pubScmUrl=https://svn.apache.org/repos/infra/websites/production/maventest/content/plugins/maven-XXX-plugin-latest
+
 svn cp https://svn.apache.org/repos/infra/websites/production/maventest/content/plugins/maven-XXX-plugin-latest \
        https://svn.apache.org/repos/infra/websites/production/maventest/content/plugins/maven-XXX-plugin-Y.Z
 +------+
@@ -63,36 +64,25 @@ http://maven.apache.org/plugins/maven-XX
 
 * Publishing the release website
 
-  After the release has passed, the site needs to be updated to point to the new release:
-
-TODO: choose between htaccess rewrite rule and following svn symlink:
+  After the release has passed, the site needs to be updated to point to the new release: edit the content/filtered-resources/.htaccess file
+  (locally or with the CMS) to update rewrite rule
 
 +-------+
-# just tested but could not make the following command work
-svnmucc -U https://svn.apache.org/repos/infra/websites/production/maventest/content/plugins \
-       put =(printf "link maven-XXX-plugin-Y.Z") maven-XXX-plugin \
-       propset svn:special '*' maven-XXX-plugin
+RewriteRule ^plugins/maven-XXX-plugin/(.*)$ /plugins/maven-XXX-plugin-Y.Z/$1 [L]
 +-------+
 
-  Notice that {{{http://subversion.tigris.org/issues/show_bug.cgi?id=4142}an issue has been opened}} to add direct
-  symlink support to svnmucc, so the previous command should be in a near future:
-
-+-------+
-svnmucc -U https://svn.apache.org/repos/infra/websites/production/maventest/content/plugins \
-       symlink maven-XXX-plugin maven-XXX-plugin-Y.Z
-+-------+
 
 * Updating the Maven site
 
- Use the CMS to update {{{/plugins/}the plugins page}}, made easy with the bookmarklet.
+ Use the CMS to update {{{/plugins/}the plugins page}}, made easy with the CMS bookmarklet.
 
 * idea to be developped if sufficient people is interested
 
-  Instead of doing command line svn and svnmucc operations and extpaths.txt edits, the staging/release operations could be automated
+  Instead of doing command line svn and extpaths.txt + .htaccess edits, the staging/release operations could be automated
   as web ui like following:
 
   * http://cms.apache.org/maventest/release/plugins/maven-xxx-plugin-X.Y could display a page proposing to <<stage the release
-  documentation>> (doing svn command and extpaths.txt edit)
+  documentation>> (doing svn command and .htaccess edit)
 
   * next time this page is displayed, with the content already available in svn, the page could propose 2 different actions:
   <<drop the staged documentation>> (with extpaths.txt removal) or <<publish the release website>>.