Skip to content

Instantly share code, notes, and snippets.

@voor
Last active August 29, 2015 14:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save voor/3b86d9dbea77d1d094fe to your computer and use it in GitHub Desktop.
Save voor/3b86d9dbea77d1d094fe to your computer and use it in GitHub Desktop.
Empty Maven Settings File
# If you've never run maven this folder doesn't exist yet.
mkdir ~/.m2
# Provided from https://gist.github.com/voor/3b86d9dbea77d1d094fe#file-settings-xml
wget -o ~/.m2/settings.xml https://gist.githubusercontent.com/voor/3b86d9dbea77d1d094fe/raw/73dc13028f617fc86a28819cdd919c13d9f0a360/settings.xml
<settings xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
http://maven.apache.org/xsd/settings-1.0.0.xsd">
<localRepository/>
<interactiveMode/>
<usePluginRegistry/>
<offline/>
<pluginGroups/>
<servers>
<!-- Insert a server entry here.-->
</servers>
<mirrors/>
<proxies/>
<profiles/>
<activeProfiles/>
</settings>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment