> If I make any changes on project A and run mvn install on project B, the > changes from project A does not get included to war file for project B. > > However, if I run mvn install on project A and then run mvn install on > project B, the changes from project A gets included to war file for project > B. > > Is this normal? Is there any way to get project B updated with project A > with running mvn install on project A?
Make a parent over A and B. Build from the parent. Set a dependency from B to A. Changes in A will go into B. Wayne --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
