I have maven project and i have recently introduced Solr to act as a search indexer for my data. Solr contains configuration files such as schema.xml or solr.xml etc, but these files sit within solr package. I would like to add these files to version control (SVN) of my project. but i dont want the entire solr in my SVN just the configuration files.
What would be the correct way of managing this? I don't want to just simply add these files, and each time when i check out the code paste those files in solr, too many release steps...
Ideally i would want solr configuration to link to my files automatically so i can change them at any time, and each time i update the changes to SVN, solr would pull the new configs without me having to interfere.
Any suggestions appreciated.