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>
|