1.

What is dependency management in spring boot and what are the advantages of it?

Answer»

A Dependency Management, inherited from the spring-boot-dependencies pom, that manages the VERSIONS of common dependencies. This dependency management lets you omit <version> tags for those dependencies when USED in your own pom. Execution of the repackage goal with a repackage execution id.

All of the dependent jar files or library files are MANAGED by spring boot version. Once you specify spring boot version, you do not need to manage versions of other dependent libraries. It also HELPS to manage multi-module projects.

It also avoids conflicting versions of jar files and maintains a single version which is compatible with other dependencies as well.



Discussion

No Comment Found