Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to outsource the dependencyManagement to a file (have a local BOM)?

Tags:

java

maven

I know that I can import dependencyManagement entries to a POM by using a so-called BOM from the repository. I wonder if there is a similar mechanism to reference a file in the same project.

We are generating POMs in an automated conversion step from Ant to Maven. For reproducibility, we need to generate quite a long dependencyManagement section. I would to be nice to put it into a separate file in the same project.

Is this possible?

like image 606
J Fabian Meier Avatar asked Dec 06 '25 06:12

J Fabian Meier


1 Answers

No, this is explicitly not supported with Maven 2 and 3. It was asked in MNG-3556, but was closed as "Won't Fix". The reason is that it would allow the creation of POMs that are no longer self-contained. What you can do here, is make a concrete Maven project containing the BOM you're generating, release it, and then import it in other projects with <scope>import</scope>.

But, it migth be done in the future with version 5.0.0 of the POM model. Ideas about it are written on this Confluence page and it does contain the notion of mixins, asked in MNG-5102, which would allow parts of the POM to be included from other sources.

like image 65
Tunaki Avatar answered Dec 07 '25 20:12

Tunaki



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!