2022-10-10 16:45:18 +01:00
|
|
|
# jdeps
|
|
|
|
|
|
|
|
> Java class dependency analyzer.
|
2023-06-04 02:48:54 +01:00
|
|
|
> More information: <https://docs.oracle.com/en/java/javase/20/docs/specs/man/jdeps.html>.
|
2022-10-10 16:45:18 +01:00
|
|
|
|
|
|
|
- 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`
|