jdeps
Java class dependency analyzer. More information: <https://docs.oracle.com/en/java/javase/20/docs/specs/man/jdeps.html>.
Install
- All systems
-
curl cmd.cat/jdeps.sh
- Debian
-
apt-get install openjdk-12-jdk-headless - Ubuntu
-
apt-get install openjdk-9-jdk-headless - Arch Linux
-
pacman -S jdk8-openjdk - Kali Linux
-
apt-get install openjdk-11-jdk-headless - Fedora
-
dnf install java-9-openjdk-devel-debug-1 - Windows (WSL2)
-
sudo apt-get updatesudo apt-get install openjdk-9-jdk-headless - Raspbian
-
apt-get install openjdk-8-jdk
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
© tl;dr; authors and contributors