From 923d726ef9f762f82ebb3d4b32b549f251b34e96 Mon Sep 17 00:00:00 2001 From: Mark Paluch Date: Tue, 6 Aug 2019 15:53:09 +0200 Subject: [PATCH] DATALDAP-127 - Add HTTPS entries into spring.schemas. To resolve XSD files properly from the classpath, their HTTPS reference must be present in the spring.schemas to avoid internet interaction for resolving an XSD file. --- src/main/resources/META-INF/spring.schemas | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/resources/META-INF/spring.schemas b/src/main/resources/META-INF/spring.schemas index 1aa76fb..b4576b8 100644 --- a/src/main/resources/META-INF/spring.schemas +++ b/src/main/resources/META-INF/spring.schemas @@ -1,2 +1,4 @@ http\://www.springframework.org/schema/data/ldap/spring-ldap-1.0.xsd=org/springframework/data/ldap/config/spring-ldap-1.0.xsd http\://www.springframework.org/schema/data/ldap/spring-ldap.xsd=org/springframework/data/ldap/config/spring-ldap-1.0.xsd +https\://www.springframework.org/schema/data/ldap/spring-ldap-1.0.xsd=org/springframework/data/ldap/config/spring-ldap-1.0.xsd +https\://www.springframework.org/schema/data/ldap/spring-ldap.xsd=org/springframework/data/ldap/config/spring-ldap-1.0.xsd