(작성중) Maven Repository
# Reference
https://blog.packagecloud.io/eng/2017/03/09/how-does-a-maven-repository-work/
How does a maven repository work?
TL;DR Similar to our APT Repository Internals and YUM Repository Internals posts, this post aims to illustrate the inner workings of a Maven repository. Read on if you have ever been curious as to how mvn compile figures out which dependencies to download
blog.packagecloud.io
https://maven.apache.org/guides/mini/guide-multiple-repositories.html
Maven – Guide to using Multiple Repositories
Setting up Multiple Repositories There are two different ways that you can specify the use of multiple repositories. The first way is to specify in a POM which repositories you want to use: ... my-repo1 your custom repo http://jarsm2.dyndns.dk my-repo2 you
maven.apache.org
https://stackoverflow.com/questions/5325407/how-to-set-order-of-repositories-in-maven-settings-xml
How to set order of repositories in Maven settings.xml
I have 3 repositories in my settings.xml because I need artifacts from all of them. Whenever a dependency is not found, Maven tries Downloading: http://some.server/mvn2repo/releases/org/apache/luc...
stackoverflow.com