I'm working on a project with dependency X. X, in turn, depends on Y.

I used to explicitly include Y in my project's pom. However, it was not used and to make things cleaner, I instead added it to X's pom as a dependency. X is marked as a release dependency.

The problem is that after removing Y from my project's pom and adding it to X's pom, my project isn't picking it up on mvn -U clean package. I know -U update snapshots but not releases.

So, without deleting the ~/.m2/repository directory how can I force a re-download of X's pom? Also, I tried running dependency:purge-local-repository and it didn't work either.

link|improve this question

feedback

3 Answers

When you added it to X, you should have incremented X's version number i.e X-1.2
Then X-1.2 should have been installed/deployed and you should have changed your projects dependency on X to be dependent on the new version X-1.2

link|improve this answer
feedback

You've tagged the questions as "maven-2". The -U option was added in Maven 3 to solve this problem.

I'd suggest upgrading.

link|improve this answer
I'm running Maven version 2.2.1. Running mvn --help shows -U,--update-snapshots as an option. – Artem Shnayder Oct 31 '11 at 22:06
feedback

You cannot make Maven re-download dependencies, but what you can do instead is to purge dependencies using dependency:purge-local-repository that were incorrectly downloaded.

See: http://maven.apache.org/plugins/maven-dependency-plugin/purge-local-repository-mojo.html

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.