Last active
January 1, 2016 10:49
-
-
Save vanpeerdevelopment/8134335 to your computer and use it in GitHub Desktop.
Maven settings file setting the location of the local repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<settings> | |
<!-- Set the location using an absolute path --> | |
<localRepository>\location\of\local\repo</localRepository> | |
<!-- Set the location by evaluating an environment variable --> | |
<localRepository>${M2_LOCAL_REPO}</localRepository> | |
</settings> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment