InterviewSolution
Saved Bookmarks
| 1. |
What Is A Transitive Dependency ? Can We Override Transitive Dependency Version And If Yes, How ? |
|
Answer» Transitive DEPENDENCY is the dependencies not defined DIRECTLY in the current POM but the POM of the dependent projects. Yes we can override transitive dependency VERSION by SPECIFYING the dependency in the current POM. Transitive dependency is the dependencies not defined directly in the current POM but the POM of the dependent projects. Yes we can override transitive dependency version by specifying the dependency in the current POM. |
|