I'm new to maven, and I am in the process of migrating all my eclipse projects to m2e projects. I'm having these three usage questions:
1) Currently, I've two standalone java projects that are being referenced by two different web projects. At first, I was thinking about creating those two standalone java projects as maven modules. But my understanding is that a module can only have one parent project. So, how can they be referenced in two different web projects? Would this means that I would have to create these two java projects as maven project?
2) I also have an eclipse EJB 2.1 project that I want to move to maven. The EJB runs in a server where several different applications are accessing it, including the two web projects mentioned above. Should I create this EJB project as maven project? If it is created as project, what is the proper way for those two web projects to reference it?
3) Is there a standard maven archetype for EJB2.1 project?
Thanks