> Using the same example where libraries A and B depend on C. If Product X > needs these libraries, can it just include as modules A and B or does it > need C as well? That is, can a parent project just include the top-level > projects or does it need to specify every component in the dependency tree?
Assuming you have your dependencies properly set up in A and B, then you should be able to just depend on A or B in X and it will automatically (transitively) bring in C as needed. That is the entire point of transitive dependencies. Wayne --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
