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)?

link|improve this question

feedback

1 Answer

You can use maven-resources plugin to copy a file to the desired location. Before or after a war has been built.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.