I'm creating a library "A" that imports dependency "B". When I include library "A" in a project, I get a ClassNotFoundException
if I also don't explicitly include dependency "B" in the project's pom.
When importing dependency "A", is there a way to tell Maven to automatically include all the its dependencies including "B" (without manually declaring to import "B", since it's already in the pom.xml
of library "A")?