This repository was archived by the owner on Nov 9, 2017. It is now read-only.

Description
Input
A simple configuration such as:
[ { "service.pid" : "xxx" "prop": "@{resource;configuration/file.txt}" } ]
Problem
lead to a Json parse exception on Windows because the macro is replaced by a path without escape characters: C:\User\cde... \configuration\file.txt (expected path: C:\User\cde\... \configuration\file.txt).
note
Also there is a difference between the documentation of the resource macro and what is currently being done:
- documentation -> @{resource:} (colon)
- code -> @{resource;} (semi-colon)