* @throws RepositoryException
*/
protected void storeRepProps(Properties props) throws RepositoryException {
FileSystemResource propFile = new FileSystemResource(metaDataStore, PROPERTIES_RESOURCE);
try {
propFile.makeParentDirs();
OutputStream os = propFile.getOutputStream();
try {
props.store(os, null);
} finally {
// make sure stream is closed