I have a Spring application-context.xml with PropertyPlaceholderConfigurer to get properties\' values from .properties file. Main and test source folders have separate .prop
Using:
Change your:
property.name=${env.SYSTEM_PROPERTY}
To:
property.name=${SYSTEM_PROPERTY}
I'm using Spring 3.0.4.RELEASE, but I have no idea when this was introduced.