I am analyzing the dependencies of a large java project. I found jdeps for analyzing static dependencies. It is showing a large graph of dependencies. Many jars are not being found, though, for example the jdbc drivers, because they are loaded with "Class.forName()" in the code and jdeps only finds static dependencies.
What is the correct way to analyze the dynamic dependencies of java libraries as well ?