Skip to content

Instantly share code, notes, and snippets.

@ssledz
Created January 29, 2017 00:12
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 ssledz/7922a18704de6bf3f6d593ed2f6f0b67 to your computer and use it in GitHub Desktop.
Save ssledz/7922a18704de6bf3f6d593ed2f6f0b67 to your computer and use it in GitHub Desktop.
<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 https://maven.apache.org/xsd/settings-1.0.0.xsd">
<profiles>
<profile>
<id>local</id>
<properties>
<internal.repo.path>file://${user.home}/mvn-repo/releases</internal.repo.path>
<internal.snapshots-repo.path>file://${user.home}/mvn-repo/snapshots</internal.snapshots-repo.path>
</properties>
</profile>
</profiles>
<activeProfiles>
<activeProfile>local</activeProfile>
</activeProfiles>
</settings>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment