Print a flat list of dependencies of a Maven project —22 September 2014
This bash one-liner can be handy sometimes:
mvn dependency:list | sed -ne s/..........// -e /patterntoexclude/d -e s/:compile//p -e s/:runtime//p | sort | uniq
The mvn dependency:list command produces a list of dependencies that’s readable but not very program-friendly, looking like this:
[INFO] The following files have been resolved: [INFO] joda-time:joda-time:jar:2.3:compile [INFO] junit:junit:jar:4.11:test [INFO] log4j:log4j:jar:1.2.12:compile
A sed can shave off the extra formatting to turn this into:
joda-time:joda-time:jar:2.4 log4j:log4j:jar:1.2.12
Explanation:
-ndon’t print by default-e s/..........//shave off the first 10 characters-e /patterntoexclude/dyou can exclude some unwanted patterns from the list using thedcommand like this-e s/:compile//p -e s/:runtime//preplace and print:compileand:runtime
As multi-module projects may include duplicates, filter the result through | sort | uniq