You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by vy...@apache.org on 2023/01/24 20:00:33 UTC

[logging-log4j-tools] branch master updated: Avoid `https` in XSD namespaces, since they are only used as an identifier (#13)

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

vy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/logging-log4j-tools.git


The following commit(s) were added to refs/heads/master by this push:
     new bb40095  Avoid `https` in XSD namespaces, since they are only used as an identifier (#13)
bb40095 is described below

commit bb400953d7c44fd6023f208d4ecca26defa369c2
Author: Volkan Yazıcı <vo...@yazi.ci>
AuthorDate: Tue Jan 24 21:01:45 2023 +0100

    Avoid `https` in XSD namespaces, since they are only used as an identifier (#13)
---
 log4j-changelog/src/main/resources/log4j-changelog.xsd | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/log4j-changelog/src/main/resources/log4j-changelog.xsd b/log4j-changelog/src/main/resources/log4j-changelog.xsd
index 4f17b15..ee532ea 100644
--- a/log4j-changelog/src/main/resources/log4j-changelog.xsd
+++ b/log4j-changelog/src/main/resources/log4j-changelog.xsd
@@ -16,8 +16,8 @@
   limitations under the License.
 -->
 <schema xmlns="http://www.w3.org/2001/XMLSchema"
-        targetNamespace="https://logging.apache.org/log4j/changelog"
-        xmlns:cl="https://logging.apache.org/log4j/changelog"
+        targetNamespace="http://logging.apache.org/log4j/changelog"
+        xmlns:cl="http://logging.apache.org/log4j/changelog"
         elementFormDefault="qualified"
         version="0.1.0">