I'm working with a solr app that needs to have a config friendly data location. I've been following this post with no luck.
In my solr module I have the following solrcore.properties file
#solrcore.properties
data.dir=C:\temp\solr123\
I also have the following defined in my solrconfig (also in the solr module)
<dataDir>${data.dir:./solr/data}</dataDir>
solr is still creating the solr directory in the root directory so it would appear that the config friendly property can't be found.
Anyone actually hooked these up so you could config your data dir dynamically with solr?