Is it possible to use environment variables in a project.properties?
example: I have team members working in their own cvs "sandbox"
I would like for them to have something in their .bash_profile such as:
export SANDBOX=/home/fred/sandboxes/chronicle
and then use that SANDBOX variable as a value in a certain
project.properties, such as:
maven.sandbox = ${SANDBOX}
I know from ant that you can <property environment="env"/>
and use env.SANDBOX. Does maven do anything like this automatically?
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]