vote up 4 vote down star

What's the difference between @{property} and ${property} in accessing ant properties?

Didn't see any documentation about it in Ant manual.

flag

2 Answers

vote up 6 vote down check

${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.

link|flag
thanks, this all makes sense now – imeikas May 14 at 9:46
vote up 4 vote down

${property} is used to reference Properties.

@{attribute} is used to reference Attributes in <macrodef> Tasks.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.