Skip to content

Instantly share code, notes, and snippets.

@basmussen
Last active January 1, 2016 22:29
Show Gist options
  • Save basmussen/8209951 to your computer and use it in GitHub Desktop.
Save basmussen/8209951 to your computer and use it in GitHub Desktop.
Maven Settings XML
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
http://maven.apache.org/xsd/settings-1.0.0.xsd">
<mirrors>
<!-- mirror of * -->
<mirror>
<id>central</id>
<name>Repository name</name>
<url>http://yourhost/path/to/repo</url>
<mirrorOf>*</mirrorOf>
</mirror>
</mirrors>
</settings>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment