What does dependency management mean with respect to transitive dependency?
Answer Posted / Amit Trivedi
In Apache Maven, Dependency Management refers to the centralized configuration of dependencies and their versions. This includes managing Transitive Dependencies, i.e., dependencies that are required by your direct dependencies but not explicitly declared. When you declare a dependency with its version in the pom.xml file, it also manages any transitive dependencies that this dependency requires.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers