You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by vo...@apache.org on 2020/11/03 18:58:29 UTC

[myfaces] branch 3.0.x updated: Fix schema locations in jsfXX-faces-config.xml files

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

volosied pushed a commit to branch 3.0.x
in repository https://gitbox.apache.org/repos/asf/myfaces.git


The following commit(s) were added to refs/heads/3.0.x by this push:
     new 6aa3737  Fix schema locations in jsfXX-faces-config.xml files
6aa3737 is described below

commit 6aa3737b741ca6b5c6c2e58eba202727a93ce30f
Author: Volodymyr Siedlecki <vo...@ibm.com>
AuthorDate: Tue Nov 3 13:54:01 2020 -0500

    Fix schema locations in jsfXX-faces-config.xml files
---
 .../src/test/resources/org/apache/myfaces/config/jsf22-faces-config.xml | 2 +-
 .../src/test/resources/org/apache/myfaces/config/jsf23-faces-config.xml | 2 +-
 .../src/test/resources/org/apache/myfaces/config/jsf30-faces-config.xml | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/impl/src/test/resources/org/apache/myfaces/config/jsf22-faces-config.xml b/impl/src/test/resources/org/apache/myfaces/config/jsf22-faces-config.xml
index 4fcd222..9cb45c5 100644
--- a/impl/src/test/resources/org/apache/myfaces/config/jsf22-faces-config.xml
+++ b/impl/src/test/resources/org/apache/myfaces/config/jsf22-faces-config.xml
@@ -1,7 +1,7 @@
 <faces-config
   xmlns="http://xmlns.jcp.org/xml/ns/javaee"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-  xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee/web-facesconfig_2_2.xsd"
+  xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-facesconfig_2_2.xsd"
   version="2.2">
 
 </faces-config>
diff --git a/impl/src/test/resources/org/apache/myfaces/config/jsf23-faces-config.xml b/impl/src/test/resources/org/apache/myfaces/config/jsf23-faces-config.xml
index 1a9f944..5008f71 100644
--- a/impl/src/test/resources/org/apache/myfaces/config/jsf23-faces-config.xml
+++ b/impl/src/test/resources/org/apache/myfaces/config/jsf23-faces-config.xml
@@ -1,7 +1,7 @@
 <faces-config
     xmlns="http://xmlns.jcp.org/xml/ns/javaee"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-    xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee/web-facesconfig_2_3.xsd"
+    xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-facesconfig_2_3.xsd"
     version="2.3">
 
 </faces-config>
diff --git a/impl/src/test/resources/org/apache/myfaces/config/jsf30-faces-config.xml b/impl/src/test/resources/org/apache/myfaces/config/jsf30-faces-config.xml
index bd2d31d..6733d6b 100644
--- a/impl/src/test/resources/org/apache/myfaces/config/jsf30-faces-config.xml
+++ b/impl/src/test/resources/org/apache/myfaces/config/jsf30-faces-config.xml
@@ -1,7 +1,7 @@
 <faces-config
   xmlns="https://jakarta.ee/xml/ns/jakartaee"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-  xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee/web-facesconfig_2_3.xsd"
+  xsi:schemaLocation="https://jakarta.ee/xml/ns/jakartaee https://jakarta.ee/xml/ns/jakartaee/web-facesconfig_3_0.xsd"
   version="3.0">
 
 </faces-config>