I need advice, we have three independent projects but some of them share some dependencies and others are context related. Is it better to use inheritance in maven pom or use dependencies?
|
Depends on what you mean by "context related". In general I would recommend you use dependencies if the projects are independent enough. Inheritance would make sense if they're sharing more that couple of modules. For example, if all three projects need to use version Y of library X, and you're going to be updating this library at once in all three projects, then use inheritance. Otherwise, I wouldn't. |
|||
|
|
|
I would suggest to use dependencies. Pom inheritance makes more sense when you have different submodules of the same application, so you want all of the submodules to use the same version of the dependencies. |
|||||
|
|
You should use dependencies for all dependencies that aren't needed in every module. If there exist some shared sets of dependencies, like many spring dependencies for example, you can use a bill of materials. |
|||
|
|