vote up 2 vote down star

When I launch the "mvn install" command, maven sometimes tries to download dependencies that it has already downloaded. That's expected for SNAPSHOT but why does maven do that for other JARs?

I know I can avoid that behavior by "-o" flag but I just wonder what the cause is.

flag

3 Answers

vote up 5 vote down check

I'd look for dependencies that don't have a specified version number. Maven will periodically check to make sure that it has the most up-to-date version of these artifacts.

link|flag
It may also be updates to plugins so specifiying versions on them could also help. – Steve g Sep 24 '08 at 12:24
Yep ... I guess I generically included them in "dependencies". You also have to realize that lifecycle phases are often bound to specific plugins. Who actually specifies a version number for their compiler plugin? – Steve Moyer Sep 24 '08 at 18:43
1  
Dependencies must have a version specified. Plugins do not, but you should. Here's why: sonatype.com/people/2008/… – Brian Fox Apr 19 at 2:27
vote up 1 vote down

This is probably not what you're seeing, but in the past I've had to manually install artifacts into my local repository and if you forget to include the -Dgenerate.pom=true option there will be no pom in the repo for that artifact and Maven will go out to central (and any other remote repos you have configured) to try to download that pom on every build.

link|flag
vote up 1 vote down

While we're on the subject of this, I've run into a major bug in Maven 2.0.x. In offline mode, maven will still attempt to download the latest snapshot, and when it can't find your snapshot repo, it fails the build. Imagine the hilarity that ensues when this happens on site with a client and you just needed to make a small change (but I digress).

Here's the bug: http://jira.codehaus.org/browse/MNG-2433 here's a workaround: http://mail-archives.apache.org/mod_mbox/maven-users/200601.mbox/%3C117228810601130559l7e79a5e2k@mail.gmail.com%3E

link|flag
This was fixed in 2.0.10: jlorenzen.blogspot.com/2009/04/… – Brian Fox Apr 19 at 2:28

Your Answer

Get an OpenID
or

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