Is there any way to specify an xml file as the source of property values
instead of a properties files...
<build>
<filters>
<!-- Something like this ... -->
<filter>src/main/filters/filter.xml</filter>
<!-- End of special section. Don't worry about the rest... -->
</filters>
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>
We're specifying the replace file in a command line switch, and the
different files get out of date as new properties are added. Having an xml
file would allow for an xml schema, and that would make it easier to see
which files are out of date.
Thanks