I am writing a custom Maven plugin that is doing some custom stuff including calling Ant. The build.xml I'm going to use is always the same, therefore I add it as resource file in the plugin and read it from classpath during runtime. That is, it's NOT provided by the Maven project calling my plugin, but in the plugin itself.
This build.xml may contain Maven properties such as ${project.name}, ${project.build.directory} etc. which of course are those of the target Maven project. Hence, I have to replace all those properties in my input file by the real values before calling Ant.
How do I do that? I guess there must be a more convenient way than setting up the replacement table myself, since Maven is doing this property replacement all the time on all kind of files...
Any help is greatly appreciated!
Thanks, Christoph.