As I've gathered, maven-war-plugin never overwrites files which already exist in the target of an overlay. For example, if I have a war A which has a dependency on a war B, both of which contain some resource located at src/main/resources/some.xml, the resulting A.war will contain the some.xml from the A project.
How do I instruct the maven-war-plugin to favor the resources from the dependency (B) over the original ones (A)?