You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Problem

By default, the Maven local repository is a single directory structure, stored typically in the user's home directory. This is used as a cache for multiple remote repositories and as a place to store locally installed artifacts.

This can be problematic when multiple remote repositories contain artifacts which use the same GAV (GroupId, ArtifactId, Version) but have different content.
For example repo A and repo B contain the same GAV (GroupId, ArtifactId, Version) with different content in the jar and pom:

repo A

repository
+- org
|  +- myproj
|  |  +- 1.0
|  |  |  +- myproj-1.0.pom
|  |  |  \- myproj-1.0.jar

repo B

repository
+- org
|  +- myproj
|  |  +- 1.0
|  |  |  +- myproj-1.0.pom
|  |  |  \- myproj-1.0.jar

If repo A is specified first in the build config, then the jar and pom from repo A will be downloaded to the local repository. If another build is then run which requires org:myproj:1.0 from repo B, Maven will use the incorrect jar and POM from repo A, since it is already available in the local repo. This is known as a GAV conflict because the two repositories have conflicting data and cannot be safely used together.

Related Discussion: http://docs.codehaus.org/display/MAVEN/Local+repository+separation

Proposed Solution

To solve this problem, Maven should use a separate local repository for each remote repository. Each local repository would function as a cache for the associated remote repository. The name of each local repository cache follows the format <repositoryId>-<url-hash>. In the event that the same repository ID is used to represent two different remote URLs, two separate repository caches would be created. If two repository IDs point to the same URL, the hash value can be used to identify that they are the same, and possibly store metadata that allows Maven to recognize the two as being the same.

.m2
+- repositories
|  +- central-<hash>
|  +- repoA-<hash>
|  \- repoB-<hash>

The order in which Maven checks these local reopsitories is dependent on the build configuration. In the example above, the first build would use repo A to download org:myproj:1.0, and then second build would have repoB configured and use repoB to download and locally store the required org:myproj:1.0.

In addition, a separate repository should be used for installs/uploads to avoid conflicts with remote repositories.

.m2
+- repositories
|  +- central-<hash>
|  +- repoA-<hash>
|  \- repoB-<hash>
\- workspace

Related Jira issues http://jira.codehaus.org/browse/MNG-3655

Repositories vs. Plugin Repositories

This proposal is also related to separation of repositories for project dependencies is the use of plugin repositories as discussed in http://jira.codehaus.org/browse/MNG-4302

  • No labels