Skip to content

Instantly share code, notes, and snippets.

@dannyge
Created August 5, 2016 04:55
Show Gist options
  • Save dannyge/473d4584d077fa505cca06bae392972b to your computer and use it in GitHub Desktop.
Save dannyge/473d4584d077fa505cca06bae392972b to your computer and use it in GitHub Desktop.
list maven dep
# first grab all dependencies
mvn dependency:resolve
# then list them with -o to keep noise low,
# remove extra information and duplicates
mvn -o dependency:list \
| grep ":.*:.*:.*" \
| cut -d] -f2- \
| sed 's/:[a-z]*$//g' \
| sort -u
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment