I have a property file which is generated by my ant script itself during execution. And I want to access the value of properties from this generated property file.
I tried this, to get similar values
prop.properties contains:
a=val1
b=val2
c=val3
batch.props=a,b,c
@{prop} is ${batch.@{prop}}
Got Ans as below:
a is val1
b is val2
c is val3
Enjoy!