I searched a lot in apache documentation and ibiblio.org and I could not find a decent straight answer.

My questions:

  1. When I download a jar using maven dependency (setup in pom), how can I be sure that the file does not change on the remote repository? for example, if I'm using log4j version 1.2.3, downloaded from ibiblio.org (or any other repo for that matter), how can I be sure I'm getting the exact same jar each time?
  2. Does maven delete jars from the local repository? let's assume I'm not clearing the repository at all, will it fill up eventually? or does maven have some kind of mechanism to clear old jars?
link|improve this question
Elad, did my answers help? – Andrew Logvinov Feb 22 at 12:25
feedback

3 Answers

If my understanding is correct, then:

1) Maven won't download dependency artifact, if it's already in your local repository. If you remove it from there, it will be downloaded when necessary. In order to verify that you've downloaded the file that you're expecting to see, you need to manually check if md5 or sha1 checksum of the artifact is equal to the one in Maven central repository (or some other repository that you trust).

2) No, Maven doesn't delete jars from your local repository. The size of your local repository is only restricted to the size of your HDD =)

link|improve this answer
Let me rephrase my first question: how can I be sure that each time I download a jar from repo1.maven.org with version 1.2.3, I get the same exact jar? First, does maven ALWAYS check the sha1 of each jar BEFORE downloading it? Second, can someone change the jar on the remote repository (administrator of that repository), with the appropriate NEW sha1, but leave the version number? it does not really make sense to do it, but errors occur, and I want to be sure I'm getting the same exact jar each time. – Elad Feb 8 at 16:39
@Elad When Maven downloads some artifact from repository, it also downloads sha1 and md5 checksum files. See contents of repository here for example. Compare contents of these files in Maven local repository on 2 different machines for some artifact. They should be identical. – Andrew Logvinov Feb 8 at 16:55
@Elad No, Maven doesn't check the checksum before downloading the artifact. And yes, administrator can change the artifact and the checksum leaving the version number. When you deploy an artifact, Maven automatically generates these checksum files. – Andrew Logvinov Feb 8 at 16:58
Ok, so when building the project on different machines, I might end up with one jar on one machine, and a different one on the other, although both have the same version number. In such a case, I have the sha1 files to compare, but this is quite disturbing, as I can't promise that given the same source files, each machine will have the exact same build result. What is the conventional way to deal with this? – Elad Feb 9 at 16:09
@Elad Yes, it is possible, but the chance of such situation seems to be very little. The conventional way to deal with this is to set up your own Maven repository and make all of your projects use it. – Andrew Logvinov Feb 10 at 6:36
feedback

In Maven conventions a released version like log4j 1.2.3 will never be changed. It will be left in your locale repository until you manually delete it. It can't be changed by anyone except for the admins on maven central, but i suppose they don't do such a stupid thing.

Furthermore the download by default is done from maven central (repo1.maven.org/maven2 instead of ibiblio).

One of the "tricks" in Maven is download an artifact (released) only once...that improved your build performance in contradiction to the SNAPSHOT dependencies.

link|improve this answer
feedback

You could configure your own repository, and point all your project poms at that. It's easy to configure your poms to use a different (private) repository, but I've never set one up myself. Doesn't seem too hard, other than managing it to keep all the needed artifacts available.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.