I have multiple projects that depends on the same data model. The latter is defined by a Maven project. Let's take as example two composite projects A and B that include multiple modules each one and that depend on this data model. The project A and B are not related.
What is the best approach in this case? To leave the data model as an independent project with A and B depending on it? Or, to define the data model as a module and to include it in the two composite projects A and B (I don't know if a module may be shared by many projects)?
Thanks