0

I have a dependency jar in which there was a bug. Developer gave a fix.

Artifact version was not changed. So I just did a mvn clean install on my project. But It did not download the changes done for the artifact.

So, not sure where it is going wrong.

user2496751
  • 41
  • 2
  • 5

1 Answers1

0

Try doing this from Console, then do a mvn clean.

find ~/.m2  -name "*.lastUpdated" -print -exec rm {} \;

Else, download the jar, and install it manually using maven, then clean it

Abhishek Anand
  • 1,940
  • 14
  • 27