source: gs3-extensions/iiif-servlet/trunk/src/m2-settings.xml@ 38200

Last change on this file since 38200 was 38200, checked in by davidb, 8 months ago

Changes and fixes after install on fresh OS

File size: 1.9 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<settings xmlns="http://maven.apache.org/SETTINGS/1.2.0"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.2.0 https://maven.apache.org/xsd/settings-1.2.0.xsd">
5
6 <!-- mirrors
7 | This is a list of mirrors to be used in downloading artifacts from remote repositories.
8 |
9 | It works like this: a POM may declare a repository to use in resolving certain artifacts.
10 | However, this repository may have problems with heavy traffic at times, so people have mirrored
11 | it to several places.
12 |
13 | That repository definition will have a unique id, so we can create a mirror reference for that
14 | repository, to be used as an alternate download site. The mirror site will be the preferred
15 | server for that repository.
16 |-->
17 <mirrors>
18 <!-- mirror
19 | Specifies a repository mirror site to use instead of a given repository. The repository that
20 | this mirror serves has an ID that matches the mirrorOf element of this mirror. IDs are used
21 | for inheritance and direct lookup purposes, and must be unique across the set of mirrors.
22 |
23 <mirror>
24 <id>mirrorId</id>
25 <mirrorOf>repositoryId</mirrorOf>
26 <name>Human Readable Name for this Mirror.</name>
27 <url>http://my.repository.com/repo/path</url>
28 </mirror>
29 -->
30 <!--
31 <mirror>
32 <id>maven-default-http-blocker</id>
33 <mirrorOf>external:http:*</mirrorOf>
34 <name>Pseudo repository to mirror external repositories initially using HTTP.</name>
35 <url>http://0.0.0.0/</url>
36 <blocked>true</blocked>
37 </mirror>
38 -->
39 <mirror>
40 <id>maven-default-http-blocker</id>
41 <url>http://maven.restlet.com</url>
42 <mirrorOf>dummy</mirrorOf>
43 <blocked>false</blocked>
44 </mirror>
45
46 </mirrors>
47</settings>
Note: See TracBrowser for help on using the repository browser.