Is it possible to specify value of property as property in ant?

前端 未结 2 1455
离开以前
离开以前 2021-01-12 09:44

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.

F

2条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2021-01-12 10:36

    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!

提交回复
热议问题