Reputation: 2008
I'm refactoring a big project which includes a lot of dependencies ; I have found that some of them comes with spring or spring boot.
Is there a simple way to check if a dependency already comes with Spring ?
Upvotes: 0
Views: 27
Reputation: 2824
Assuming you use Maven, you can view the dependency tree using the command
mvn dependency:tree
Upvotes: 3