Skip to content

Instantly share code, notes, and snippets.

@rwunsch
Created September 15, 2016 09:02
Show Gist options
  • Save rwunsch/f0aabf61ff7333933c1a79af8f1916b6 to your computer and use it in GitHub Desktop.
Save rwunsch/f0aabf61ff7333933c1a79af8f1916b6 to your computer and use it in GitHub Desktop.
#!/bin/bash
# first grab all dependencies
mvn dependency:resolve >/dev/null
# 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