Listing Dependencies or Determining JDK-Internal API Use - Java Object Oriented Design

Java examples for Object Oriented Design:Module

Introduction

Use the jdeps tool to list module dependencies.

To see the list of dependencies for a given module, specify the --list-deps option as follows:

jdeps --list-deps your-jar-file-name.jar

The jdeps tool can list such JDK-Internal APIs dependencies with -jdkinternals option as follows:

jdeps -jdkinternals your-jar.jar

Related Tutorials