You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by br...@apache.org on 2009/07/09 23:07:11 UTC

svn commit: r792698 - /maven/site/trunk/src/site/apt/guides/development/guide-building-m2.apt

Author: brett
Date: Thu Jul  9 21:07:11 2009
New Revision: 792698

URL: http://svn.apache.org/viewvc?rev=792698&view=rev
Log:
update SVN locations and versions

Modified:
    maven/site/trunk/src/site/apt/guides/development/guide-building-m2.apt

Modified: maven/site/trunk/src/site/apt/guides/development/guide-building-m2.apt
URL: http://svn.apache.org/viewvc/maven/site/trunk/src/site/apt/guides/development/guide-building-m2.apt?rev=792698&r1=792697&r2=792698&view=diff
==============================================================================
--- maven/site/trunk/src/site/apt/guides/development/guide-building-m2.apt (original)
+++ maven/site/trunk/src/site/apt/guides/development/guide-building-m2.apt Thu Jul  9 21:07:11 2009
@@ -26,17 +26,17 @@
   All of the source code for Maven and its related libraries is in {{{http://subversion.tigris.org/} Subversion}}.
   You can {{{http://svn.apache.org/viewvc/maven/} browse the repository}}, or checkout specific modules directly.
 
-  To build Maven 2.0, you need the <<<maven-2.0.x>>> branch of the <<<components>>> module. To check that out, run the command:
+  To build Maven 2.2 (the current stable branch), you need the <<<maven-2.2.x>>> branch of the <<<maven-2>>> module. To check that out, run the command:
 
 -------------------
-svn co https://svn.apache.org/repos/asf/maven/components/branches/maven-2.0.x maven-2.0.x
+svn co https://svn.apache.org/repos/asf/maven/maven-2/branches/maven-2.2.x maven-2.2.x
 -------------------
 
-  To build Maven 2.1, you need the <<<trunk>>> of the <<<components>>> module. To
+  To build Maven 3.0 (unstable development branch), you need the <<<trunk>>> of the <<<components>>> module. To
   check that out, run the command:
 
 -------------------
-svn co https://svn.apache.org/repos/asf/maven/components/trunk maven-components
+svn co https://svn.apache.org/repos/asf/maven/components/trunk maven-3
 -------------------
 
   Alternatively, you can check out all Maven projects in one directory using:
@@ -45,9 +45,9 @@
 svn co https://svn.apache.org/repos/asf/maven/trunks maven
 -------------------
 
-  If you have checked out <<<trunks>>>, the <<<maven-2.0.x>>> directory will
-  contain the Maven 2.0 source code, and the <<<components>>> directory will
-  contain the 2.1 source code. Note that neither directory contains any of the
+  If you have checked out <<<trunks>>>, the <<<maven-2.2.x>>> directory will
+  contain the Maven 2.2 source code, and the <<<components>>> directory will
+  contain the 3.0 source code. Note that neither directory contains any of the
   plugins.
 
   <<Note>>: For Windows users, the checkout could be not complete with the following message:
@@ -110,7 +110,7 @@
 
   If you already have Maven installed, it can be faster to build a new version with Maven, rather than a clean bootstrap.
 
-  To do this, run from the <<<components>>> or <<<maven-2.0.x>>> directory:
+  To do this, run from the <<<components>>> or <<<maven-2.2.x>>> directory:
 
 ----
 mvn install
@@ -130,21 +130,21 @@
   If you do not have Maven installed, you can use
   {{{http://ant.apache.org}Apache Ant}} to build Maven.
 
-  Once you have checked out the code, change into the <<<components>>> or <<<maven-2.0.x>>> directory that was created.
+  Once you have checked out the code, change into the <<<components>>> or <<<maven-2.2.x>>> directory that was created.
 
   Set the M2_HOME environment variable to the location that should contain
   Maven. This directory <<must>> be named after the Maven version you want to
-  build and install, for example <<</usr/local/maven-2.1-SNAPSHOT>>>.
+  build and install, for example <<</usr/local/maven-2.2-SNAPSHOT>>>.
 
 ----
-export M2_HOME=/usr/local/maven-2.1-SNAPSHOT
+export M2_HOME=/usr/local/maven-2.2-SNAPSHOT
 PATH=$M2_HOME/bin:$PATH
 ----
 
   or
 
 ----
-set M2_HOME=c:\maven-2.1-SNAPSHOT
+set M2_HOME=c:\maven-2.2-SNAPSHOT
 set PATH=%M2_HOME%\bin;%PATH%
 ----