Idea/Maven view how a jar was introduced

idea

I have to say that the idea is really too complicated, with hundreds of dependencies and no search.
View method

Maven

Maven provides direct viewing, mvn dependency:tree -Dverboseoutput all dependency trees through commands , and then copy them to text search.

Detailed commands:

mvn dependency:tree -Dverbose -Dincludes=com.fasterxml.jackson.core:jackson-annotations

dependency:tree means tree, you can also use dependency:list to display the list
-Dverbose means you can display all references, including those that are ignored because of repeated references
-Dincludes Make query conditions

Guess you like

Origin blog.csdn.net/fomeiherz/article/details/103831524