java - Is there a simple way to remove unused dependencies of Spring Project -
i have large maven project several modules , same have lots of spring dependencies. working on same found have lots of dependencies define in our process class not using where,
is there appropriate plugin tools can search unused bean dependency of spring.i google , found intelli j plug can help.
kindly let me know if have other tool or process solve above issue.
the maven dependency plugin help, dependency:analyze goal.
http://maven.apache.org/plugins/maven-dependency-plugin/index.html
dependency:analyze analyzes dependencies of project , determines are: used , declared; used , undeclared; unused , declared.
Comments
Post a Comment