InterviewSolution
Saved Bookmarks
| 1. |
What Does Dependency Management Mean In The Context Of Transitive Dependency? |
|
Answer» It means to directly SPECIFY the versions of artifacts to be used when they are encountered in transitive DEPENDENCIES. For an example project C can include B as a dependency in its dependencyManagement section and directly control which version of B is to be used when it is EVER REFERENCED. It means to directly specify the versions of artifacts to be used when they are encountered in transitive dependencies. For an example project C can include B as a dependency in its dependencyManagement section and directly control which version of B is to be used when it is ever referenced. |
|