This is an automated email from the ASF dual-hosted git repository.

vorburger pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract.git


The following commit(s) were added to refs/heads/develop by this push:
     new dddb988  Use https (instead of http) for XSDs - to avoid issues during 
"gradlew bootRun" in some conditions (FINERACT-1180)
dddb988 is described below

commit dddb988876ed4ebc026972b6b91952352053a8d8
Author: Vincent FUCHS <[email protected]>
AuthorDate: Fri Oct 9 17:13:47 2020 +0200

    Use https (instead of http) for XSDs - to avoid issues during "gradlew 
bootRun" in some conditions (FINERACT-1180)
---
 .../src/main/resources/META-INF/spring/securityContext.xml          | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/fineract-provider/src/main/resources/META-INF/spring/securityContext.xml 
b/fineract-provider/src/main/resources/META-INF/spring/securityContext.xml
index 10cb342..599372a 100644
--- a/fineract-provider/src/main/resources/META-INF/spring/securityContext.xml
+++ b/fineract-provider/src/main/resources/META-INF/spring/securityContext.xml
@@ -25,11 +25,11 @@
     xmlns:oauth="http://www.springframework.org/schema/security/oauth2";
     xsi:schemaLocation="
    http://www.springframework.org/schema/beans
-   http://www.springframework.org/schema/beans/spring-beans.xsd
+   https://www.springframework.org/schema/beans/spring-beans.xsd
    http://www.springframework.org/schema/security/oauth2
-   http://www.springframework.org/schema/security/spring-security-oauth2.xsd
+   https://www.springframework.org/schema/security/spring-security-oauth2.xsd
    http://www.springframework.org/schema/security
-   http://www.springframework.org/schema/security/spring-security.xsd";>
+   https://www.springframework.org/schema/security/spring-security.xsd";>
 
     <beans:beans profile="basicauth">
         <http create-session="stateless" use-expressions="true" 
pattern="/api/**"

Reply via email to