How to determine which JARs are used?

In a larger project, we can use tons of JAR. How to find out which JARs are used by a specific module / package in a project (not the whole project). Any tool, technique, etc.

+3
source share
2 answers

Large projects typically use a build tool such as maven or ant . maven has a maven dependency plugin to list dependencies for the specific project you are invoking mvn dependency:list. In the case of ant, it depends on how the assembly of the script is written.

Perhaps you should provide more detailed information about your project environment, and you can get better answers.

+2

All Articles