Should you include those dependencies in your pom that are already the dependencies of some of your dependencies?

核能气质少年 提交于 2019-12-07 08:00:32

问题


Say there are two dependencies you need: A and B. And at the same time A is already a dependency of B. So do you still want/need to add A along with B as dependencies in your pom?

I believe this may be needed when A and B are external libraries where the version of A needed may be different than the version of A that B is depending on.

But how about when both your module and A and B are modules in the same project? i.e. knowing their versions are all going to be in sync.


回答1:


If your module uses APIs from B it's best practice to add it explicitly to your pom, even though it's not strictly necessary. If you upgrade A, it could well be that it doesn't use B anymore and then you'll get a build failure without any changes to your module code.

Regarding versions, you should manage those with dependencyManagement in a parent pom. You can then skip the version for the managed dependencies in the child poms. The version in the dependencyManagement overrides the version in transitive dependencies, ensuring you use the same version everywhere.

If all modules are in the same project, they should also share the same project version. Typically, this will be a snapshot version, e.g. 1-SNAPSHOT

Each module will use something like:

<project>
  <artifactId>A</artifactId>
  <version>1-SNAPSHOT</version>

And refer to A and B like this in other modules:

<dependency>
  <groupId>com.yourcompany</groupId>
  <artifactId>A</artifactId>
  <version>${project.version}</version>
</dependency>

To set a non-SNAPSHOT version before you build a release, you can for example use the maven-dependency-plugin's versions:set goal.



来源:https://stackoverflow.com/questions/53200029/should-you-include-those-dependencies-in-your-pom-that-are-already-the-dependenc

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!