I've a legacy Spring boot application with many dependencies ( standard spring's like web and custom users as well) each dependency artifact has it's own dependencies list and so on. At the top of all of this I see something like:
import org.apache.commons.bla.bla.*
I wanna trace which particular dependency it came from? I see the
apache.commons.
jar in the project classpath tree ( I use IDEA) but it only shows the jar is here, but not where it came from.
Are there any ways to trace the chain of the dependencies or at least a bottom dependency where it came from?