Consider a file:
@'${project.build.outputDirectory}
Which is resolved to @'${project.build.outputDirectory}
. But when @
is removed all works. Is there a way to escape @
symbol?
P.S. Of cource I can define a new property with @
as value and write: ${myProperty}'${project.build.outputDirectory}
but define whole property for one symbol is more workaroung that good solution.