I've defined an xmlproperty file with several elements describing deployment server details.
<servers>
<profile name="server1">
... some details
</profile>
<profile name="server2">
... some other details
</profile>
... and so on
</servers>
How can I retreive the details for just "server1"? If I try:
<echo message="${server.profile.detail}"/>
I get details for every profile I've registered. I wish to retreive one specific set of details.
Is this possible without coding a new task?
Thanx
<servers>
<profile name="server1">
... some details
</profile>
<profile name="server2">
... some other details
</profile>
... and so on
</servers>
How can I retreive the details for just "server1"? If I try:
<echo message="${server.profile.detail}"/>
I get details for every profile I've registered. I wish to retreive one specific set of details.
Is this possible without coding a new task?
Thanx