0 votes
in Maven - Coalescing Pipeline by
What is meant by ‘Transitive Dependency’ in Maven?

1 Answer

0 votes
by
  • Maven avoids the need to find out and specify libraries that the dependencies require, by including transitive dependencies automatically.
  • Transitive dependency says that if X depends on Y and Y depends on Z, then X depends on both Y and Z.
...