Is the information found in buildSubset.xml, from a z/OS dependency build, available as properties to a post-build ant script?
I have a z/OS dependency build that builds from a work item defined subset. This produces output in the buildSubset.xml log file that contains the specific work items that were included:
<ns1:criteria>
<ns1:type>workItem</ns1:type>
<ns1:uuid>_Vfa-IHseEemGvsmhlp2j-g</ns1:uuid>
<ns1:dynamic>false</ns1:dynamic>
<ns1:includeChildren>false</ns1:includeChildren>
<ns1:includeImpacted>false</ns1:includeImpacted>
<ns1:workItems>1339</ns1:workItems>
</ns1:criteria>
<ns1:type>workItem</ns1:type>
<ns1:uuid>_Vfa-IHseEemGvsmhlp2j-g</ns1:uuid>
<ns1:dynamic>false</ns1:dynamic>
<ns1:includeChildren>false</ns1:includeChildren>
<ns1:includeImpacted>false</ns1:includeImpacted>
<ns1:workItems>1339</ns1:workItems>
</ns1:criteria>
I would like to have this information available for use as inputs in a post-build script. I know I could parse the buildSubset.xml file and retrieve but was wondering if this already available as a property?