I’d like to do something like a property set globbing from a set of properties, to a new one, but not save the result in a propertyset, but rather in the global property space.
For example:
<syspropertyset>
<propertyref prefix="foo."/>
<mapper type="glob" from="foo.*" to="bar.*"/>
</syspropertyset>
Will map all the properties like foo.something to bar.something, but they won’t be generally available to other tasks, they are instead limited in scope to the propertyset.
You could use the
echopropertiestask and go via a property file. Something like:Result (some verbiage removed to simplify):