logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Analyze Java Dependencies - With jdeps | Online Free DevTools by Hexmos

Analyze Java dependencies with jdeps. Identify class dependencies, generate summaries, and create DOT files for visualization. Free online tool, no registration required.

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

See Also