How To Check Dependencies Between Jar Files?

落花浮王杯 提交于 2019-11-27 18:32:33

I know that there was a tool coming out of the JBoss project called JBoss TattleTale, might be worth taking a look:

http://www.jboss.org/tattletale

JDepend will analyze dependencies for you for any number of JARs, class files, etc. Relating the packages it reports to those JARs should be a trivial extra step.

why don't you use Maven for your project? that will help you a lot managing dependencies.

I also found JarAnalyzer, but it doesn't seem to be maintained anymore.

Well, it is year 2013 now, so I am not sure whether this tool was great on year 2009. Just used it and found it is useful: Class Dependency Analyzer (CDA) (V1.14) http://www.dependency-analyzer.org/ This tool has a graph UI (Swing?). After add lib jars and Java classes, it will show the dependencies in Class/Package/Container(jar) level. It can also show the dependants as well. So it is easy to find the depend on jars and depended jars.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!