I was looking for multi-module projects in Maven, and I can find examples of modules that exist as subdirectories for the parent project. Am I not mistaken in deducing from this that there is no way to split the module between two maven projects without the need to package and deploy it in the repository? It would hit me as uselessly bulky.
For example, I will say that I am actively working on two related projects that do not talk with each other, except through the API I am working on, and plan to use it for future things. The bridge is constantly being updated, like work on the progress of two projects.
So, if I want to use Maven modules for this effort, one pom.xml project will look like this:
<groupId>net.syndog</groupId>
<artifactId>myproject</artifactId>
.
.
.
<modules>
<module>myproject-bridge</module>
</modules>
... ...
<groupId>net.syndog</groupId>
<artifactId>myotherproject</artifactId>
.
.
.
<modules>
<module>myproject-bridge</module>
</modules>
, Maven , , myproject myotherproject myproject-bridge?
Maven, myproject-bridge , ? , , , , , , . ?