

In this article, we are going to give a glimpse of Java 9 How to check dependency of module?
Checking dependencies of any module was a cumbersome task before Java 9 introduce a new Tool for checking dependencies of the module which is known as jdeps.
jdeps -s –module-path . bar.jar
- -s option indicates Print dependency summary only.
- –module-path Specify module path

jdeps
Was this post helpful?
Let us know if you liked the post. That’s the only way we can improve.