If you write something like
rootDir=C:\some\where\
anotherDir=${rootDir}\cleoDir
The parameter substitution fails because it doesn't correctly escape backslashes. This causes problems on Windows, particularly if you load the system properties and want to use something like user.home.
If you write something like
The parameter substitution fails because it doesn't correctly escape backslashes. This causes problems on Windows, particularly if you load the system properties and want to use something like
user.home.