What's the difference between @{property} and ${property} in accessing ant properties?
Didn't see any documentation about it in Ant manual.
What's the difference between @{property} and ${property} in accessing ant properties?
Didn't see any documentation about it in Ant manual.
${property} is the normal way to access properties. @{property} is used inside macro definitions to access arguments passed to this macro. See the ant manual on macrodef.
${property} is used to reference Properties.
@{attribute} is used to reference Attributes in <macrodef> Tasks.