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/02/28 23:29:18 UTC

svn commit: r1294865 - in /maven/site/trunk/src/site/apt: ./ guides/getting-started/ guides/introduction/ guides/mini/ run-maven/

Author: hboutemy
Date: Tue Feb 28 22:29:18 2012
New Revision: 1294865

URL: http://svn.apache.org/viewvc?rev=1294865&view=rev
Log:
[MNG-5151] use repo.maven.apache.org CNAME to provide more stability

Modified:
    maven/site/trunk/src/site/apt/guides/getting-started/index.apt
    maven/site/trunk/src/site/apt/guides/introduction/introduction-to-repositories.apt
    maven/site/trunk/src/site/apt/guides/introduction/introduction-to-the-pom.apt
    maven/site/trunk/src/site/apt/guides/mini/guide-central-repository-upload.apt
    maven/site/trunk/src/site/apt/guides/mini/guide-mirror-settings.apt
    maven/site/trunk/src/site/apt/pom.apt
    maven/site/trunk/src/site/apt/run-maven/index.apt
    maven/site/trunk/src/site/apt/settings.apt

Modified: maven/site/trunk/src/site/apt/guides/getting-started/index.apt
URL: http://svn.apache.org/viewvc/maven/site/trunk/src/site/apt/guides/getting-started/index.apt?rev=1294865&r1=1294864&r2=1294865&view=diff
==============================================================================
--- maven/site/trunk/src/site/apt/guides/getting-started/index.apt (original)
+++ maven/site/trunk/src/site/apt/guides/getting-started/index.apt Tue Feb 28 22:29:18 2012
@@ -899,7 +899,7 @@ mvn process-resources "-Dcommand.line.pr
  that isn't available in the local repository, Maven will download the dependency from a remote repository into the local repository.  You
  probably noticed Maven downloading a lot of things when you built your very first project (these downloads were dependencies for the
  various plugins used to build the project).  By default, the remote repository Maven uses can be found (and browsed) at
- {{http://repo1.maven.org/maven2/}}.  You can also set up your own remote repository (maybe a central repository for your company) to
+ {{http://repo.maven.apache.org/maven2/}}.  You can also set up your own remote repository (maybe a central repository for your company) to
  use instead of or in addition to the default remote repository.  For more information on repositories you can refer to the
  {{{../introduction/introduction-to-repositories.html}Introduction to Repositories}}.
 

Modified: maven/site/trunk/src/site/apt/guides/introduction/introduction-to-repositories.apt
URL: http://svn.apache.org/viewvc/maven/site/trunk/src/site/apt/guides/introduction/introduction-to-repositories.apt?rev=1294865&r1=1294864&r2=1294865&view=diff
==============================================================================
--- maven/site/trunk/src/site/apt/guides/introduction/introduction-to-repositories.apt (original)
+++ maven/site/trunk/src/site/apt/guides/introduction/introduction-to-repositories.apt Tue Feb 28 22:29:18 2012
@@ -20,7 +20,7 @@ Introduction to Repositories
  Remote repositories refer to any other type of repository, accessed by a variety of protocols such as
  <<<file://>>> and <<<http://>>>. These repositories might be a truly remote repository
  set up by a third party to provide their artifacts for downloading (for example,
- {{{http://repo1.maven.org/maven2/}repo1.maven.org}} and {{{http://uk.maven.org/maven2/}uk.maven.org}} house Maven's central repository).
+ {{{http://repo.maven.apache.org/maven2/}repo.maven.apache.org}} and {{{http://uk.maven.org/maven2/}uk.maven.org}} house Maven's central repository).
  Other "remote" repositories may be internal repositories
  set up on a file or HTTP server within your company, used to share private artifacts between development teams
  and for releases.
@@ -65,7 +65,7 @@ Introduction to Repositories
 
  Downloading in Maven is triggered by a project declaring a dependency that is not present in the local
  repository (or for a <<<SNAPSHOT>>>, when the remote repository contains one that is newer).
- By default, Maven will download from the {{{http://repo1.maven.org/maven2/}central}} repository.
+ By default, Maven will download from the {{{http://repo.maven.apache.org/maven2/}central}} repository.
 
  To override this, you need to specify a <<<mirror>>> as shown in {{{../mini/guide-mirror-settings.html}Using Mirrors for Repositories}}
 
@@ -119,7 +119,7 @@ Internal Repositories
 * Setting up the Internal Repository
 
  To set up an internal repository just requires that you have a place to put it, and then start copying
- required artifacts there using the same layout as in a remote repository such as {{{http://repo1.maven.org/maven2/}repo1.maven.org}}.
+ required artifacts there using the same layout as in a remote repository such as {{{http://repo.maven.apache.org/maven2/}repo.maven.apache.org}}.
 
  It is <not> recommended that you scrape or <<<rsync://>>> a full copy of central as there is a large amount
  of data there and doing so will get you banned. You can use a program such as those described on the {{{../../repository-management.html}Repository Management}} page to

Modified: maven/site/trunk/src/site/apt/guides/introduction/introduction-to-the-pom.apt
URL: http://svn.apache.org/viewvc/maven/site/trunk/src/site/apt/guides/introduction/introduction-to-the-pom.apt?rev=1294865&r1=1294864&r2=1294865&view=diff
==============================================================================
--- maven/site/trunk/src/site/apt/guides/introduction/introduction-to-the-pom.apt (original)
+++ maven/site/trunk/src/site/apt/guides/introduction/introduction-to-the-pom.apt Tue Feb 28 22:29:18 2012
@@ -114,7 +114,7 @@ Introduction to the POM
 
  Furthermore, as you can see that in the minimal POM, the <repositories> were not specified. If you build your project using the minimal POM,
  it would inherit the <repositories> configuration in the Super POM. Therefore when Maven sees the dependencies in
- the minimal POM, it would know that these dependencies will be downloaded from <<<http://repo1.maven.org/maven2>>> which was specified
+ the minimal POM, it would know that these dependencies will be downloaded from <<<http://repo.maven.apache.org/maven2>>> which was specified
  in the Super POM.
 
  {{{./introduction-to-the-pom.html}[top]}}

Modified: maven/site/trunk/src/site/apt/guides/mini/guide-central-repository-upload.apt
URL: http://svn.apache.org/viewvc/maven/site/trunk/src/site/apt/guides/mini/guide-central-repository-upload.apt?rev=1294865&r1=1294864&r2=1294865&view=diff
==============================================================================
--- maven/site/trunk/src/site/apt/guides/mini/guide-central-repository-upload.apt (original)
+++ maven/site/trunk/src/site/apt/guides/mini/guide-central-repository-upload.apt Tue Feb 28 22:29:18 2012
@@ -107,7 +107,7 @@ Guide to uploading artifacts to the Cent
  * What about artifacts that can't be distributed because of their license?
  
  In that case only the POM for that dependency is required, listing where the dependency can be downloaded from.
- {{{http://repo1.maven.org/maven2/javax/activation/activation/1.0.2/activation-1.0.2.pom}See an example}}.
+ {{{http://repo.maven.apache.org/maven2/javax/activation/activation/1.0.2/activation-1.0.2.pom}See an example}}.
 
  * I have a patched version of the foo project developed at foo.com, what <<<groupId>>> should I use?
 

Modified: maven/site/trunk/src/site/apt/guides/mini/guide-mirror-settings.apt
URL: http://svn.apache.org/viewvc/maven/site/trunk/src/site/apt/guides/mini/guide-mirror-settings.apt?rev=1294865&r1=1294864&r2=1294865&view=diff
==============================================================================
--- maven/site/trunk/src/site/apt/guides/mini/guide-mirror-settings.apt (original)
+++ maven/site/trunk/src/site/apt/guides/mini/guide-mirror-settings.apt Tue Feb 28 22:29:18 2012
@@ -52,9 +52,9 @@ Using Mirrors for Repositories
  The settings descriptor documentation can be found on the {{{../../maven-settings/settings.html}Maven Local Settings
  Model Website}}.
 
- <<Note>>: The official Maven 2 repository is at <<<http://repo1.maven.org/maven2>>> hosted in the US, or <<<http://uk.maven.org/maven2>>> hosted in the UK. 
+ <<Note>>: The official Maven 2 repository is at <<<http://repo.maven.apache.org/maven2>>> hosted in the US, or <<<http://uk.maven.org/maven2>>> hosted in the UK. 
  
- A list of known mirrors is available in the {{{http://repo1.maven.org/maven2/.meta/repository-metadata.xml}Repository Metadata}}. These 
+ A list of known mirrors is available in the {{{http://repo.maven.apache.org/maven2/.meta/repository-metadata.xml}Repository Metadata}}. These 
 mirrors may not have the same contents and we don't support them in any way.
 
 Using A Single Repository

Modified: maven/site/trunk/src/site/apt/pom.apt
URL: http://svn.apache.org/viewvc/maven/site/trunk/src/site/apt/pom.apt?rev=1294865&r1=1294864&r2=1294865&view=diff
==============================================================================
--- maven/site/trunk/src/site/apt/pom.apt (original)
+++ maven/site/trunk/src/site/apt/pom.apt Tue Feb 28 22:29:18 2012
@@ -1539,7 +1539,7 @@ scm:cvs:pserver:127.0.0.1:/cvs/root:my-p
   The repository elements within a POM specify those alternate repositories to search.
 
   The repository is one of the most powerful features of the Maven community. The default central Maven
-  repository lives on {{http://repo1.maven.org/maven2/}}. Another source for artifacts not yet in iBiblio
+  repository lives on {{http://repo.maven.apache.org/maven2/}}. Another source for artifacts not yet in iBiblio
   is the Codehaus snapshots repo.
 
 +-------------------------+
@@ -1671,7 +1671,7 @@ scm:cvs:pserver:127.0.0.1:/cvs/root:my-p
       <uniqueVersion>false</uniqueVersion>
       <id>corp1</id>
       <name>Corporate Repository</name>
-      <url>scp://repo1/maven2</url>
+      <url>scp://repo/maven2</url>
       <layout>default</layout>
     </repository>
     <snapshotRepository>

Modified: maven/site/trunk/src/site/apt/run-maven/index.apt
URL: http://svn.apache.org/viewvc/maven/site/trunk/src/site/apt/run-maven/index.apt?rev=1294865&r1=1294864&r2=1294865&view=diff
==============================================================================
--- maven/site/trunk/src/site/apt/run-maven/index.apt (original)
+++ maven/site/trunk/src/site/apt/run-maven/index.apt Tue Feb 28 22:29:18 2012
@@ -94,7 +94,7 @@ for artifact:
   org.apache.maven:maven:pom:2.1-SNAPSHOT
 
 from the specified remote repositories:
-  central (http://repo1.maven.org/maven2)
+  central (http://repo.maven.apache.org/maven2)
 +-----+
 
   To resolve this issue, it depends on what the dependency is and why it is missing. The most common cause is because

Modified: maven/site/trunk/src/site/apt/settings.apt
URL: http://svn.apache.org/viewvc/maven/site/trunk/src/site/apt/settings.apt?rev=1294865&r1=1294864&r2=1294865&view=diff
==============================================================================
--- maven/site/trunk/src/site/apt/settings.apt (original)
+++ maven/site/trunk/src/site/apt/settings.apt Tue Feb 28 22:29:18 2012
@@ -248,7 +248,7 @@ mvn jetty:run
 
   * <<mirrorOf>>:
   The <<<id>>> of the repository that this is a mirror of. For example, to point to a mirror
-  of the Maven <<<central>>> repository (<<<{{http://repo1.maven.org/maven2/}}>>>), set this element to
+  of the Maven <<<central>>> repository (<<<{{http://repo.maven.apache.org/maven2/}}>>>), set this element to
   <<<central>>>. More advanced mappings like <<<repo1,repo2>>> or <<<*,!inhouse>>> are also possible. This must not
   match the mirror <<<id>>>.