We are starting some work on a large a portlet development work using Liferay and I am finding it difficult to structure this project in terms of various portlets we are creating. We are not sure which way should we structure our project. We have distributed development team across world and we are using git as our version repository. We are using Spring Portlet MVC for developing portlets and using service builder for service layer.
I can think about these 3 approaches.
Create a New Portlet project for each portlet
- Keeping each portlet in a separate portlet project can be easy and fast in development since I can have developers independently working on them.
- This may become pain in cases when portlets use common code. So there can be lot of proliferation of same type of code in different portlets.
- This may go out of control since we will have many war files and each add to runtime cost of us.
Logically separate portlets into number of portlet projects
- This will reduce the number of portlet projects and lot of code can be reused.
- Some control can be placed in such structure.
Create just one portlet project with all portlets
- This will be most complicated to manage for distributed developer team.
- Most of common code can be reused.
- Enforcing consistency can be easier in this.
Mix of 1 and 2 (Based on my discussion with Dirk in comments below) This approach needs to be mix of 1 and 2 I guess.
- I would want to give each developer a independent portlet dev env along with some guidelines on common components.
- This way they have more control on their portlet code and only focus on portlet specific code.
- At the same time common code may need to have more control since multiple people may modify it.
I would like to know your expert opinion if you have already created liferay projects/portlets and what approach you chose. Keeping these things in mind
- How do you control the portlet development when there are multiple portlets being developed by variety of developers.
- What are pros/cons of any of the above approaches above mentioned.
- If none of the above mentioned approaches are good please mention the best approach to this you can think of.
Thanks for reading