*/
public static TypeSystemDescription ecore2UimaTypeSystem(String aEcoreFilePath, Map aOptions)
throws URISyntaxException {
// register default resource factory
Resource.Factory.Registry.INSTANCE.getExtensionToFactoryMap().put("*",
new XMIResourceFactoryImpl());
// create resource set to hold the resource we're loading and its dependent resources
ResourceSet resourceSet = new ResourceSetImpl();
// convert file path to absolute path -- seems to be required for propery proxy resolution
File inputFile = new File(aEcoreFilePath);
URI absoluteInputURI = URI.createFileURI(inputFile.getAbsolutePath());