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

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-digester.git


The following commit(s) were added to refs/heads/master by this push:
     new 45a27236 Use HTTPS to fetch XSD files
45a27236 is described below

commit 45a27236235178e64bb8b58b1fb6670f7109e99f
Author: Gary Gregory <[email protected]>
AuthorDate: Wed Jan 15 09:42:16 2025 -0500

    Use HTTPS to fetch XSD files
---
 commons-digester3-core/pom.xml                          | 2 +-
 commons-digester3-dist/pom.xml                          | 2 +-
 commons-digester3-dist/src/main/assembly/bin.xml        | 2 +-
 commons-digester3-dist/src/main/assembly/src.xml        | 2 +-
 commons-digester3-examples/annotations/atom/pom.xml     | 2 +-
 commons-digester3-examples/api/addressbook/pom.xml      | 2 +-
 commons-digester3-examples/api/catalog/pom.xml          | 2 +-
 commons-digester3-examples/api/dbinsert/pom.xml         | 2 +-
 commons-digester3-examples/api/document-markup/pom.xml  | 2 +-
 commons-digester3-examples/edsl/atom/pom.xml            | 2 +-
 commons-digester3-examples/plugins/pipeline/pom.xml     | 2 +-
 commons-digester3-examples/pom.xml                      | 2 +-
 commons-digester3-examples/rss/pom.xml                  | 2 +-
 commons-digester3-examples/xmlrules/addressbook/pom.xml | 2 +-
 pom.xml                                                 | 2 +-
 src/site/site.xml                                       | 2 +-
 src/site/xdoc/guide/annotations.xml                     | 2 +-
 src/site/xdoc/guide/async.xml                           | 2 +-
 src/site/xdoc/guide/binder.xml                          | 2 +-
 src/site/xdoc/guide/constructor.xml                     | 2 +-
 src/site/xdoc/guide/core.xml                            | 2 +-
 src/site/xdoc/guide/plugins.xml                         | 2 +-
 src/site/xdoc/guide/substitution.xml                    | 2 +-
 src/site/xdoc/guide/xmlrules.xml                        | 2 +-
 src/site/xdoc/index.xml                                 | 2 +-
 25 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/commons-digester3-core/pom.xml b/commons-digester3-core/pom.xml
index 3cac30cd..4d6b04bb 100644
--- a/commons-digester3-core/pom.xml
+++ b/commons-digester3-core/pom.xml
@@ -18,7 +18,7 @@
 <project
     xmlns="http://maven.apache.org/POM/4.0.0";
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
+    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
https://maven.apache.org/maven-v4_0_0.xsd";>
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
diff --git a/commons-digester3-dist/pom.xml b/commons-digester3-dist/pom.xml
index 019d8d61..b250e5d2 100644
--- a/commons-digester3-dist/pom.xml
+++ b/commons-digester3-dist/pom.xml
@@ -18,7 +18,7 @@
 <project
     xmlns="http://maven.apache.org/POM/4.0.0";
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
+    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
https://maven.apache.org/maven-v4_0_0.xsd";>
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
diff --git a/commons-digester3-dist/src/main/assembly/bin.xml 
b/commons-digester3-dist/src/main/assembly/bin.xml
index 83ddcf3a..7252ecf7 100644
--- a/commons-digester3-dist/src/main/assembly/bin.xml
+++ b/commons-digester3-dist/src/main/assembly/bin.xml
@@ -17,7 +17,7 @@
 -->
 <assembly 
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.1";
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-    
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.1
 http://maven.apache.org/xsd/assembly-1.1.1.xsd";>
+    
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.1
 https://maven.apache.org/xsd/assembly-1.1.1.xsd";>
   <id>bin</id>
   <formats>
     <format>tar.gz</format>
diff --git a/commons-digester3-dist/src/main/assembly/src.xml 
b/commons-digester3-dist/src/main/assembly/src.xml
index 3cccaefe..c6bdb1b5 100644
--- a/commons-digester3-dist/src/main/assembly/src.xml
+++ b/commons-digester3-dist/src/main/assembly/src.xml
@@ -17,7 +17,7 @@
 -->
 <assembly 
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.1";
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-    
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.1
 http://maven.apache.org/xsd/assembly-1.1.1.xsd";>
+    
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.1
 https://maven.apache.org/xsd/assembly-1.1.1.xsd";>
   <id>src</id>
   <formats>
     <format>tar.gz</format>
diff --git a/commons-digester3-examples/annotations/atom/pom.xml 
b/commons-digester3-examples/annotations/atom/pom.xml
index 35d977d8..8c60054e 100644
--- a/commons-digester3-examples/annotations/atom/pom.xml
+++ b/commons-digester3-examples/annotations/atom/pom.xml
@@ -16,7 +16,7 @@
    limitations under the License.
 -->
 <project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
https://maven.apache.org/maven-v4_0_0.xsd";>
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
diff --git a/commons-digester3-examples/api/addressbook/pom.xml 
b/commons-digester3-examples/api/addressbook/pom.xml
index c9c1e24e..118b7fc9 100644
--- a/commons-digester3-examples/api/addressbook/pom.xml
+++ b/commons-digester3-examples/api/addressbook/pom.xml
@@ -16,7 +16,7 @@
    limitations under the License.
 -->
 <project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
https://maven.apache.org/maven-v4_0_0.xsd";>
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
diff --git a/commons-digester3-examples/api/catalog/pom.xml 
b/commons-digester3-examples/api/catalog/pom.xml
index d1a39f39..2ae5224e 100644
--- a/commons-digester3-examples/api/catalog/pom.xml
+++ b/commons-digester3-examples/api/catalog/pom.xml
@@ -16,7 +16,7 @@
    limitations under the License.
 -->
 <project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
https://maven.apache.org/maven-v4_0_0.xsd";>
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
diff --git a/commons-digester3-examples/api/dbinsert/pom.xml 
b/commons-digester3-examples/api/dbinsert/pom.xml
index 8b3fdb31..c9313380 100644
--- a/commons-digester3-examples/api/dbinsert/pom.xml
+++ b/commons-digester3-examples/api/dbinsert/pom.xml
@@ -16,7 +16,7 @@
    limitations under the License.
 -->
 <project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
https://maven.apache.org/maven-v4_0_0.xsd";>
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
diff --git a/commons-digester3-examples/api/document-markup/pom.xml 
b/commons-digester3-examples/api/document-markup/pom.xml
index 9b61043e..1c06b352 100644
--- a/commons-digester3-examples/api/document-markup/pom.xml
+++ b/commons-digester3-examples/api/document-markup/pom.xml
@@ -16,7 +16,7 @@
    limitations under the License.
 -->
 <project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
https://maven.apache.org/maven-v4_0_0.xsd";>
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
diff --git a/commons-digester3-examples/edsl/atom/pom.xml 
b/commons-digester3-examples/edsl/atom/pom.xml
index c488838b..52654699 100644
--- a/commons-digester3-examples/edsl/atom/pom.xml
+++ b/commons-digester3-examples/edsl/atom/pom.xml
@@ -16,7 +16,7 @@
    limitations under the License.
 -->
 <project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
https://maven.apache.org/maven-v4_0_0.xsd";>
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
diff --git a/commons-digester3-examples/plugins/pipeline/pom.xml 
b/commons-digester3-examples/plugins/pipeline/pom.xml
index 1e734ff0..84ba1e60 100644
--- a/commons-digester3-examples/plugins/pipeline/pom.xml
+++ b/commons-digester3-examples/plugins/pipeline/pom.xml
@@ -16,7 +16,7 @@
    limitations under the License.
 -->
 <project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
https://maven.apache.org/maven-v4_0_0.xsd";>
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
diff --git a/commons-digester3-examples/pom.xml 
b/commons-digester3-examples/pom.xml
index 084dd643..17ab694a 100644
--- a/commons-digester3-examples/pom.xml
+++ b/commons-digester3-examples/pom.xml
@@ -18,7 +18,7 @@
 <project
     xmlns="http://maven.apache.org/POM/4.0.0";
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
+    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
https://maven.apache.org/maven-v4_0_0.xsd";>
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
diff --git a/commons-digester3-examples/rss/pom.xml 
b/commons-digester3-examples/rss/pom.xml
index 60001e1c..2d99d3be 100644
--- a/commons-digester3-examples/rss/pom.xml
+++ b/commons-digester3-examples/rss/pom.xml
@@ -16,7 +16,7 @@
    limitations under the License.
 -->
 <project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
https://maven.apache.org/maven-v4_0_0.xsd";>
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
diff --git a/commons-digester3-examples/xmlrules/addressbook/pom.xml 
b/commons-digester3-examples/xmlrules/addressbook/pom.xml
index 0e060a2d..0c09b5ba 100644
--- a/commons-digester3-examples/xmlrules/addressbook/pom.xml
+++ b/commons-digester3-examples/xmlrules/addressbook/pom.xml
@@ -16,7 +16,7 @@
    limitations under the License.
 -->
 <project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
https://maven.apache.org/maven-v4_0_0.xsd";>
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
diff --git a/pom.xml b/pom.xml
index 3791f6d0..5cf2cfa6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -15,7 +15,7 @@
    See the License for the specific language governing permissions and
    limitations under the License.
 -->
-<project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
+<project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
https://maven.apache.org/maven-v4_0_0.xsd";>
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
diff --git a/src/site/site.xml b/src/site/site.xml
index 2c0cdaa2..049c3d8e 100644
--- a/src/site/site.xml
+++ b/src/site/site.xml
@@ -16,7 +16,7 @@
  limitations under the License.
 -->
 <project xmlns="http://maven.apache.org/DECORATION/1.1.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-  xsi:schemaLocation="http://maven.apache.org/DECORATION/1.1.0 
http://maven.apache.org/xsd/decoration-1.1.0.xsd";
+  xsi:schemaLocation="http://maven.apache.org/DECORATION/1.1.0 
https://maven.apache.org/xsd/decoration-1.1.0.xsd";
   name="Digester">
 
   <bannerRight>
diff --git a/src/site/xdoc/guide/annotations.xml 
b/src/site/xdoc/guide/annotations.xml
index b4a1b36e..38e0e069 100644
--- a/src/site/xdoc/guide/annotations.xml
+++ b/src/site/xdoc/guide/annotations.xml
@@ -17,7 +17,7 @@ limitations under the License.
 -->
 <document xmlns="http://maven.apache.org/XDOC/2.0";
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-  xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 
http://maven.apache.org/xsd/xdoc-2.0.xsd";>
+  xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 
https://maven.apache.org/xsd/xdoc-2.0.xsd";>
   <properties>
     <title>Apache Commons Digester | Guide | Annotations</title>
     <author email="[email protected]">Commons Documentation Team</author>
diff --git a/src/site/xdoc/guide/async.xml b/src/site/xdoc/guide/async.xml
index 82454bc3..a1aa2f73 100644
--- a/src/site/xdoc/guide/async.xml
+++ b/src/site/xdoc/guide/async.xml
@@ -17,7 +17,7 @@ limitations under the License.
 -->
 <document xmlns="http://maven.apache.org/XDOC/2.0";
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-  xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 
http://maven.apache.org/xsd/xdoc-2.0.xsd";>
+  xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 
https://maven.apache.org/xsd/xdoc-2.0.xsd";>
   <properties>
     <title>Apache Commons Digester | Guide | Asynchronous Parser</title>
     <author email="[email protected]">Commons Documentation Team</author>
diff --git a/src/site/xdoc/guide/binder.xml b/src/site/xdoc/guide/binder.xml
index def32d17..2f865a9e 100644
--- a/src/site/xdoc/guide/binder.xml
+++ b/src/site/xdoc/guide/binder.xml
@@ -17,7 +17,7 @@ limitations under the License.
 -->
 <document xmlns="http://maven.apache.org/XDOC/2.0";
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-  xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 
http://maven.apache.org/xsd/xdoc-2.0.xsd";>
+  xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 
https://maven.apache.org/xsd/xdoc-2.0.xsd";>
   <properties>
     <title>Apache Commons Digester | Guide | Rules Binder</title>
     <author email="[email protected]">Commons Documentation Team</author>
diff --git a/src/site/xdoc/guide/constructor.xml 
b/src/site/xdoc/guide/constructor.xml
index 82a9b01b..349c5377 100644
--- a/src/site/xdoc/guide/constructor.xml
+++ b/src/site/xdoc/guide/constructor.xml
@@ -17,7 +17,7 @@ limitations under the License.
 -->
 <document xmlns="http://maven.apache.org/XDOC/2.0";
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-  xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 
http://maven.apache.org/xsd/xdoc-2.0.xsd";>
+  xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 
https://maven.apache.org/xsd/xdoc-2.0.xsd";>
   <properties>
     <title>Apache Commons Digester | Guide | Constructor rule</title>
     <author email="[email protected]">Commons Documentation Team</author>
diff --git a/src/site/xdoc/guide/core.xml b/src/site/xdoc/guide/core.xml
index 7f1a10a5..d67d2dab 100644
--- a/src/site/xdoc/guide/core.xml
+++ b/src/site/xdoc/guide/core.xml
@@ -17,7 +17,7 @@ limitations under the License.
 -->
 <document xmlns="http://maven.apache.org/XDOC/2.0";
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-  xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 
http://maven.apache.org/xsd/xdoc-2.0.xsd";>
+  xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 
https://maven.apache.org/xsd/xdoc-2.0.xsd";>
   <properties>
     <title>Apache Commons Digester | Guide | Core APIs</title>
     <author email="[email protected]">Commons Documentation Team</author>
diff --git a/src/site/xdoc/guide/plugins.xml b/src/site/xdoc/guide/plugins.xml
index 24052f6e..b0e1cc92 100644
--- a/src/site/xdoc/guide/plugins.xml
+++ b/src/site/xdoc/guide/plugins.xml
@@ -17,7 +17,7 @@ limitations under the License.
 -->
 <document xmlns="http://maven.apache.org/XDOC/2.0";
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-  xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 
http://maven.apache.org/xsd/xdoc-2.0.xsd";>
+  xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 
https://maven.apache.org/xsd/xdoc-2.0.xsd";>
   <properties>
     <title>Apache Commons Digester | Guide | Plugins</title>
     <author email="[email protected]">Commons Documentation Team</author>
diff --git a/src/site/xdoc/guide/substitution.xml 
b/src/site/xdoc/guide/substitution.xml
index 2a1b0681..cf7d536e 100644
--- a/src/site/xdoc/guide/substitution.xml
+++ b/src/site/xdoc/guide/substitution.xml
@@ -17,7 +17,7 @@ limitations under the License.
 -->
 <document xmlns="http://maven.apache.org/XDOC/2.0";
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-  xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 
http://maven.apache.org/xsd/xdoc-2.0.xsd";>
+  xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 
https://maven.apache.org/xsd/xdoc-2.0.xsd";>
   <properties>
     <title>Apache Commons Digester | Guide | Substitution</title>
     <author email="[email protected]">Commons Documentation Team</author>
diff --git a/src/site/xdoc/guide/xmlrules.xml b/src/site/xdoc/guide/xmlrules.xml
index 25cdfc50..049fd35e 100644
--- a/src/site/xdoc/guide/xmlrules.xml
+++ b/src/site/xdoc/guide/xmlrules.xml
@@ -17,7 +17,7 @@ limitations under the License.
 -->
 <document xmlns="http://maven.apache.org/XDOC/2.0";
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-  xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 
http://maven.apache.org/xsd/xdoc-2.0.xsd";>
+  xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 
https://maven.apache.org/xsd/xdoc-2.0.xsd";>
   <properties>
     <title>Apache Commons Digester | Guide | XML Rules</title>
     <author email="[email protected]">Commons Documentation Team</author>
diff --git a/src/site/xdoc/index.xml b/src/site/xdoc/index.xml
index 3d44d0e9..d39e3155 100644
--- a/src/site/xdoc/index.xml
+++ b/src/site/xdoc/index.xml
@@ -17,7 +17,7 @@
 -->
 <document xmlns="http://maven.apache.org/XDOC/2.0";
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
-  xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 
http://maven.apache.org/xsd/xdoc-2.0.xsd";>
+  xsi:schemaLocation="http://maven.apache.org/XDOC/2.0 
https://maven.apache.org/xsd/xdoc-2.0.xsd";>
 
  <properties>
   <title>Commons</title>

Reply via email to