* - the system properties
*/
public Configuration createConfiguration(PropertyResolver propertyResolver) {
// we are not going to use the property resolver that we're being provided with, but we will build our own instead
BundleContext context = Activator.getInstanceBundleContext();
PropertyResolver resolver =
new DictionaryPropertyResolver(getProperties(context, ServiceConstants.PID),
new DictionaryPropertyResolver(getProperties(context, "org.ops4j.pax.url.mvn"),
new BundleContextPropertyResolver(context)));
return new ConfigurationImpl(resolver);