I am trying to figure out how to leverage mult-module builds in maven. Say i have a project defined as:
parent child-core child-service child-web where both child-service and child-web are dependent on child-core ok. i do a first release and everything is at version 1.0 as in: parent (1.0) child-core (1.0) child-service (1.0) child-web (1.0) Some days later there is a bug in the child-web project. What i _want_ is... parent (1.1) child-core (1.0) child-service (1.0) child-web (1.1) how can i do this with maven?
