Hi,
I'm looking for a way to use property substitution in bundlor with ant. I found out that current ant properties are not accessible directly in bundlor, is there any specific reason for it?
Also bundlor documentation says that we may use property tag within propertyset while ant propertyset only allows propertyref, propertyset or mapper.
Finally I came up with using propertyref inside propertyset for each ant property in manifest template, like
So in my manifest template I can use it likeCode:<bundlor:bundlor ...> <propertyset> <propertyref name="ant.project.name"/> </propertyset> </bundlor:bundlor>
So isn't there any easier way?Code:Project-Name: ${ant.project.name}


