diff options
author | Brett Porter <brett@apache.org> | 2011-08-25 02:14:49 +0000 |
---|---|---|
committer | Brett Porter <brett@apache.org> | 2011-08-25 02:14:49 +0000 |
commit | bf1843640208c9d127e8d5438ca7b3e8ca10e08d (patch) | |
tree | f542212306fd5129c9750b7af08cf4db6e38eb5f /archiva-docs/src | |
parent | 8d439b8f770970420ce5b8a1f80da9b0a4a24ebd (diff) | |
download | archiva-bf1843640208c9d127e8d5438ca7b3e8ca10e08d.tar.gz archiva-bf1843640208c9d127e8d5438ca7b3e8ca10e08d.zip |
change to external:* and add link to Maven's mirror settings guide
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1161361 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'archiva-docs/src')
-rw-r--r-- | archiva-docs/src/site/apt/userguide/using-repository.apt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/archiva-docs/src/site/apt/userguide/using-repository.apt b/archiva-docs/src/site/apt/userguide/using-repository.apt index bc05ce4f1..c61e979ec 100644 --- a/archiva-docs/src/site/apt/userguide/using-repository.apt +++ b/archiva-docs/src/site/apt/userguide/using-repository.apt @@ -22,13 +22,17 @@ Configuring Maven 2 to use an Archiva repository <mirror> <id>archiva.default</id> <url>http://repo.mycompany.com:8080/archiva/repository/internal/</url> - <mirrorOf>*</mirrorOf> + <mirrorOf>external:*</mirrorOf> </mirror> </mirrors> ... </settings> +-------------------------------------------------------------------------+ + <<Note:>> <There are other controls you can use on what is mirrored. See Maven's +{{{http://maven.apache.org/guides/mini/guide-mirror-settings.html} Guide to +Mirror Settings}} for more information.> + With this in place, all repository requests will be sent to the internal repository (which by default is configured to proxy the central repository). If you have separate Archiva repositories that you wish to use, you can add an extra mirror declaration as needed: |