I would like to know if there is a best way to group maven projects.
If I have more than 1 pom project, how is the best way to set them?
Solution 1:
groupid:parent:version (pom)
groupid.parent:child:version (jar)
groupid.parent:subproject:version (pom)
groupid.parent.subproject:childOne:version (jar)
groupid.parent.subproject:childTwo:version (jar)
groupid.parent.subproject:childThree:version (jar)
Solution 2:
groupid:parent:version (pom)
groupid:parent-child:version (jar)
groupid:parent-subproject:version (pom)
groupid:parent-subproject-childOne:version (jar)
groupid:parent-subproject-childTwo:version (jar)
groupid:parent-subproject-childThree:version (jar)
Any other options?!?