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 2010/09/05 00:16:19 UTC

svn commit: r992691 - /maven/site/trunk/src/site/apt/guides/mini/guide-configuring-maven.apt

Author: hboutemy
Date: Sat Sep  4 22:16:19 2010
New Revision: 992691

URL: http://svn.apache.org/viewvc?rev=992691&view=rev
Log:
[MNGSITE-112] updated example mirror configuration with a mirror that actually works

Modified:
    maven/site/trunk/src/site/apt/guides/mini/guide-configuring-maven.apt

Modified: maven/site/trunk/src/site/apt/guides/mini/guide-configuring-maven.apt
URL: http://svn.apache.org/viewvc/maven/site/trunk/src/site/apt/guides/mini/guide-configuring-maven.apt?rev=992691&r1=992690&r2=992691&view=diff
==============================================================================
--- maven/site/trunk/src/site/apt/guides/mini/guide-configuring-maven.apt (original)
+++ maven/site/trunk/src/site/apt/guides/mini/guide-configuring-maven.apt Sat Sep  4 22:16:19 2010
@@ -117,7 +117,7 @@ export MAVEN_OPTS=-Dmaven.artifact.threa
 
   To configure a mirror of a given repository, you provide it in your settings file, giving the new repository its own
   <<<id>>> and <<<url>>>, and specify the <<<mirrorOf>>> setting that is the ID of the repository you are using a mirror
-  of. For example, the <<<id>>> of the main Maven repository included by default is <<<central>>>, so to use an Australian
+  of. For example, the <<<id>>> of the main Maven repository included by default is <<<central>>>, so to use a Spanish
   mirror, you would configure the following:
 
 -------------
@@ -125,9 +125,9 @@ export MAVEN_OPTS=-Dmaven.artifact.threa
   ...
   <mirrors>
    <mirror>
-      <id>planetmirror</id>
-      <name>Australian Mirror of http://repo1.maven.org/maven2/</name>
-      <url>http://public.planetmirror.com/maven2/</url>
+      <id>cica.es</id>
+      <name>Spanish Mirror of http://repo1.maven.org/maven2/</name>
+      <url>http://ftp.cica.es/mirrors/maven2</url>
       <mirrorOf>central</mirrorOf>
     </mirror>
   ...