Map<String, String> properties = new HashMap<String, String>();
String configDir = getBaseDir() + "/src/test/config";
properties.put("hawtio.config.dir", configDir);
LOG.info("Using properties: " + properties);
blueprintContainer = new BlueprintContainerImpl(classLoader, resourcePaths, properties, true);
// No need to call init - it results in: org.apache.aries.blueprint.ComponentNameAlreadyInUseException: Name 'blueprintContainer' is already in use by a registered component
//blueprintContainer.init();
}