I am using cargo-maven plugin and I am trying to use token replacement feature of the plugin. Somehow its not working for me. I think I dont know how to represent token so that cargo can replace it with the value. Here is my plugin config
<configfiles>
<configfile>
<file>src/main/resources/test.properties</file>
</configfile>
</configfiles>
<properties>
<dchome>/users/target</dchome>
</properties>
Contents of my test.properties are as follows:
project.home = $dchome
It would be great if any one can show me an example of how to use token replacement of cargo plugin.
Thanks