我正在使用 maven 3 来构建我的大型多模块项目。我有近 80 个项目,许多项目使用了许多依赖项,因此我在所有项目中都添加了相同的依赖项。如果我将我的任何依赖项更新/移动到其后一个或更早版本,我需要在所有其他使用该依赖项的项目中进行更新,这是非常不可能的。此外,不可能为一组项目创建父 pom具有相同的依赖性。
Is there any plugin just to map as below in a pom of parent project
<dependency>somegroup:somefact:anyV<dependency>
<projects>
<project>somegroup:somefact:anyV</project>
</projects>
or is it possible to implement a plugin on my own </br>
or whether maven provide any other way to do this in its style.