diff --git a/src/main/java/eu/dnetlib/repo/manager/config/Config.java b/src/main/java/eu/dnetlib/repo/manager/config/Config.java index d9fedf9..57eb1bc 100644 --- a/src/main/java/eu/dnetlib/repo/manager/config/Config.java +++ b/src/main/java/eu/dnetlib/repo/manager/config/Config.java @@ -7,7 +7,7 @@ import org.springframework.context.annotation.PropertySources; @Configuration @ImportResource("classpath*:/gr/uoa/di/driver/app/springContext-commons.xml") -@PropertySource("classpath*:/gr/**/springContext-*.properties") -@PropertySource("classpath*:/eu/**/springContext-*.properties") +@PropertySource(value = "classpath*:/gr/**/springContext-*.properties", ignoreResourceNotFound = true) +@PropertySource(value = "classpath*:/eu/**/springContext-*.properties", ignoreResourceNotFound = true) public class Config { }