I have to create multiple maven projects and am confused about what groupId I should use for one of the projects. Just to clarify, these projects are not dependent on each other.
We have domains like:
www.mycompany.com
subdomain1.mycompany.com
subdomain2.mycompany.com
It is easy to decide on groupId for the sub-projects as I can easily translate them from the URL. For example, com.mycompany.subdomain1 and com.mycompany.subdomain2
I am unable to decide on what should be the groupId for the main project(www.mycompany.com). I am new to the Maven world and have no idea what best practice should apply here. Is it ok to go with com.mycompany.www as groupId? If not, what are the other recommendations here?
Thank you!