From b7c1a706912e03bcaab34463a367c39262036e33 Mon Sep 17 00:00:00 2001 From: Austin Date: Mon, 10 Oct 2022 17:45:18 +0200 Subject: [PATCH] jdeps: add page (#8758) --- pages/common/jdeps.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages/common/jdeps.md diff --git a/pages/common/jdeps.md b/pages/common/jdeps.md new file mode 100644 index 0000000000..77669ff62f --- /dev/null +++ b/pages/common/jdeps.md @@ -0,0 +1,24 @@ +# jdeps + +> Java class dependency analyzer. +> More information: . + +- 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`