> So when the child builds I want to just include the sources build from the > parent module as well as the resources (properties files) from the child.* ... > What is the best way to resuse the classes that were just built from the > parent, but also still grab the resources I have in the child?*
You don't want to do this at all. Make them 100% separate. Use "dependency:unpack" or similar to unpack the parent into the child's /target, then mix in the child's properties files, then package it up. Or look at assembly plugin for similar functionality. Wayne --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
