Our project has two different git repositories A and B. Both A and B are multi module projects. B’s code is finally built as a eclipse product using maven parent pom. B requires a component/ feature from A which needs to be included in the eclipse product. How can I achieve this functionality. Do I need to publish the results of A’s build to a webserver, so that B can access it as a repository? or can I include A as dependency to B’s build so that B can package this component in the final product? Where/ how can I specify this configuration?
Let me know if any other information is required.
Thanks in Advance!
This should be possible on your local machine if you run ‘mvn install’ on project A. If you want the artifact from project A to be available to other developers you need to setup a maven repository such as Archiva and run ‘mvn deploy’ instead