Hello Guys,
There is a highlighting error when you have a property that ends in a \
Example:
<property name="build.path" value="..\..\..\bin" if="${property::exists('build.path') == false}" />
renders properly, but
<property name="build.path" value="..\..\..\bin\" if="${property::exists('build.path') == false}" />
does not. It appears the closing quote is being escaped and it shouldn't be.
I'm running 2.1 1748
John