How to clean old dependencies from maven repositories?
If you are on Unix, you could use the access time of the files in there. Just enable access time for your filesystem, then run a clean build of all your projects you would like to keep dependencies for and then do something like this (UNTESTED!): find ~/.m2 -amin +5 -iname ‘*.pom’ | while read … Read more