Last active
December 14, 2017 20:49
-
-
Save premkumar-masilamani/29cd3b971989ebd77caf3e81e165cbc4 to your computer and use it in GitHub Desktop.
sorted list of maven dependencies
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mvn dependency:list | sed -ne s/..........// -e /patterntoexclude/d -e s/:compile//p -e s/:runtime//p | sort | uniq |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Copied from http://www.janosgyerik.com/print-a-flat-list-of-dependencies-of-a-maven-project/