Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Simple way to run jdeps to find out if your library/application depends on any JDK internal API:

$ jdeps -jdkinternals <one-or-more-jar-

...

files....>

You can output the dependencies in DOT file format:

$ jdeps -dotoutput <output directory> -jdkinternals <one-or-more-jar-files....>

See the jdeps man page for more information.  jdeps is a static analysis tool on the given class files and dynamic class dependencies (Class.forName or loading of service providers etc) are not reported.

...