File: settings-example.xml

package info (click to toggle)
ruby-jar-dependencies 0.5.6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,172 kB
  • sloc: ruby: 2,407; sh: 137; xml: 117; java: 20; makefile: 9
file content (62 lines) | stat: -rw-r--r-- 1,511 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!--
    this settings can be bypassed by an environment variable

JARS_MAVEN_SETTINGS=/path/to/settings.xml

    or via a java system property

jars.maven.settings=/path/to/settings.xml

-->
<settings>
  <mirrors>
    <mirror>
      <id>maven-central-mirror</id>
      <!-- mirror maven central -->
      <mirrorOf>central</mirrorOf>
      <url>https://artifactory.example.com/artifactory/all</url>
    </mirror>
  </mirrors>

  <profiles>
    <profile>
      <id>mavencentral</id>
      <!--
	  
	  http://books.sonatype.com/nexus-book/reference/config-maven.html

          mvn has a hardcoded “central” repo, and unless you reconfigure it to
	  something unrelsolvable it will still attempt to use that vs. your
	  mirror

      -->
      <repositories>
        <repository>
          <id>central</id>
          <url>http://central</url>
          <releases>
            <enabled>true</enabled>
          </releases>
          <snapshots>
            <enabled>true</enabled>
          </snapshots>
        </repository>
      </repositories>
      <pluginRepositories>
        <pluginRepository>
          <id>central</id>
          <url>http://central</url>
          <releases>
            <enabled>true</enabled>
          </releases>
          <snapshots>
            <enabled>true</enabled>
          </snapshots>
        </pluginRepository>
      </pluginRepositories>
    </profile>
  </profiles>
  <activeProfiles>
    <activeProfile>mavencentral</activeProfile>
  </activeProfiles>
</settings>