System Grab Bag

View all TLDR pages from common (or from all pages)

jdeps

Java class dependency analyzer. More information: https://docs.oracle.com/en/java/javase/20/docs/specs/man/jdeps.html.
  • Analyze the dependencies of a .jar or .class file:
    jdeps {{path/to/filename.class}}
  • Print a summary of all dependencies of a specific .jar file:
    jdeps {{path/to/filename.jar}} -summary
  • Print all class-level dependencies of a .jar file:
    jdeps {{path/to/filename.jar}} -verbose
  • Output the results of the analysis in a DOT file into a specific directory:
    jdeps {{path/to/filename.jar}} -dotoutput {{path/to/directory}}
  • Display help:
    jdeps --help

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.