Ever wonder why you project insists on including some old library file? To print a tree of all of the dependencies within your project use the following maven command:
mvn dependency:tree
Comments [0]
Use this command to generate .md5 hash files for all of the libraries in your maven repository, on mac:
find -E . -regex ".*(\.jar|\.pom)$" -exec sh -c "/sbin/md5 -q '{}' > '{}.md5'" \;
on linux try this:
find . -regextype posix-extended -regex ".*(\.jar|\.pom)$" -exec sh -c "/usr/bin/md5sum '{}' > '{}.md5'" \;
Comments [0]
Comments [0]