Hi everybody !
I have to manage inner classes in my ant building file. Therefore, I was
tempted to use "MyClass$InnerClass.java" in order to describe them. As you
may imagine, the $ character seems to be used for special purpose only like
giving a property name.
There is a very very dirty hack which consists in setting a dummy property
to "$" and use it as a delimiter:
<property name="dirtyHack" value="$">
and then refering to my inner class using
"MyClass${dirtyHack}InnerClass.java" works.
So here is the silly question : how should I properly write this $ character
?
Sylvain