*/
protected Properties newConfigProperties() {
// default location is /WEB-INF/wro.properties
final Properties props = new Properties();
try {
return new ServletContextPropertyWroConfigurationFactory(Context.get().getServletContext()).createProperties();
} catch (final Exception e) {
LOG.warn("No configuration property file found. Using default values.", e);
}
return props;
}