Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am working on product with different Scrum teams. All teams are working on the different features of the same product and it needs some customization on one another product. So basically each team will have their own customization for this another product say 'X'. What is the best way to manage the work for the customization on top of product 'X'. As for 'X' we get lot of hot fixes etc. So is it advisable to keep the ownership with one Scrum team or it should be collective ownership? Please suggest best approaches.

share|improve this question

2 Answers

The important thing is to get a clear demarcation between the common part and the customizations. It should be organized so that as little communication as possible (not less) is needed between the teams. That could mean a separate team for the common part, but that might lead to too little communication. This basically is the bounded context problem from domain driven design, or the modularisation problem with an optimum high cohesion and low coupling from structured design

share|improve this answer
Looks interesting ..so is there any solution pattern advised for bounded context problem? – Rohan Apr 13 '11 at 6:00

I'm trying to understand what 'customization' means here. If you use Agile Engineering practices, you'd typically have a facade or adapter for the customization. Even better, this entire customization will be in a separate layer.

Now, the customization can be handled by one scrum team. That team acts as a service provider to all other teams. Every other team will put their requests for customizations, well ahead of a sprint, in to the backlog of the customization team.

The advantages of the above approach could be (a)no conflicting changes between teams (b)no two teams will do the same customization (c)a good engineering practice (d)customization risks managed by one team; so mitigation is at one place (e)customizations themselves can be independently tested and shipped (f)if you move from product 'X' to 'Y', then the rest of your code doesn't have to change (loosely coupled)

Hope this makes sense.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.