Is there any way to have Maven take a file copy it such that any properties
it contains (e.g. ${pom.currentVersion}) are realized? For example, say I
have a script in src/scripts that has a header like this:

# uploaded.py
# Requires: Python 2.2.x
# Author:   Lester Ward
# Version:      ${pom.currentVersion}

I want to have a maven.xml script that results in a copy of this file in
target/build/ with a header like this:

# uploaded.py
# Requires: Python 2.2.x
# Author:   Lester Ward
# Version:      1.7.2

Is there a good way to do this to resolve any properties in the file, or do
I have to manually call Ant's Replace tag for specific values?

Thanks,
Wordman

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to