Login
Remember
Register
Ask a Question
What is meant by ‘Transitive Dependency’ in Maven?
0
votes
asked
Aug 20, 2023
in
Maven - Coalescing Pipeline
by
GeorgeBell
What is meant by ‘Transitive Dependency’ in Maven?
maven-interview-questions-answers
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Aug 20, 2023
by
GeorgeBell
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.
...