I have this structure
**** child C
Parent (A)
**** child B
If I try to install child B without the parent, maven throws me an error, I know by convention I should have the parent installed in my repository, but is there any way for someone to pull the child and during the install process, install the Parent automatically?
@edit I'm going to try to be clearer, I have a project B that depends on project A (Project A is parent, same as in project B) I would like to be able to build in project B without needing the existence of A in my ' Local '(m2> repository) Repository, I would like some way, from B also install A, so that a developer who will act on B does not have to manually install A before