Hi,
I have multiple web applications who share common resources.
So I use the war overlays mechanism (
http://maven.apache.org/plugins/maven-war-plugin/overlays.html)
All seems ok except for common properties files that I want to filter when
creating the web applications.
For instance :
My common war
war-common.war
-- WEB-INF\classes\application.properties (which contains for instance
title.main=Prototype ${project.name})
I would like to create the web application mywebapp1
mywebapp1.war
-- WEB-INF\classes\application.properties (which contains the filtering
property title.main=Prototype myweapp1)
But I didn't find how to do it.
Rémy