Barium Scoorge
Barium Scoorge

Reputation: 2008

Included dependencies in Spring

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

Answers (1)

neurite
neurite

Reputation: 2824

Assuming you use Maven, you can view the dependency tree using the command

mvn dependency:tree

Upvotes: 3

Related Questions