Skip to content

Instantly share code, notes, and snippets.

@tsmoreland
Last active January 31, 2021 00:05
Show Gist options
  • Save tsmoreland/74d6dbd3052fa161ea9a3bb0380897f1 to your computer and use it in GitHub Desktop.
Save tsmoreland/74d6dbd3052fa161ea9a3bb0380897f1 to your computer and use it in GitHub Desktop.
Maven Dependencies "pretty-print'

Command line

mvn -o dependency:list | grep ":.*:.*:.*" | cut -d] -f2- | sed 's/:[a-z]*$//g' | sort -u | grep tomcat

Powershell Alias

Set-Alias -Name mvn-dependencies -Value "mvn -o dependency:list | grep ":.*:.*:.*" | cut -d] -f2- | sed 's/:[a-z]*$//g' | sort -u | grep tomcat"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment