You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cayenne.apache.org by am...@apache.org on 2019/05/21 12:39:34 UTC

[cayenne] 01/02: Update external URLs (including XML schema) with SSL locations

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

amaniatis pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cayenne.git

commit 1658d3d4877307e39004dad5f33a2530c4b6d61c
Author: Aristedes Maniatis <ar...@ish.com.au>
AuthorDate: Tue May 21 21:50:38 2019 +1000

    Update external URLs (including XML schema) with SSL locations
---
 .travis-mvn-settings.xml                   |  6 +++---
 RELEASE-NOTES.txt                          |  2 +-
 build-tools/cayenne-checkers/pom.xml       |  8 ++++----
 build-tools/cayenne-legal/pom.xml          |  4 ++--
 build-tools/cayenne-test-utilities/pom.xml |  4 ++--
 cayenne-ant/pom.xml                        |  4 ++--
 pom.xml                                    | 26 +++++++++++++-------------
 7 files changed, 27 insertions(+), 27 deletions(-)

diff --git a/.travis-mvn-settings.xml b/.travis-mvn-settings.xml
index c2ea8e3..41ec170 100644
--- a/.travis-mvn-settings.xml
+++ b/.travis-mvn-settings.xml
@@ -7,7 +7,7 @@
   ~  "License"); you may not use this file except in compliance
   ~  with the License.  You may obtain a copy of the License at
   ~
-  ~    http://www.apache.org/licenses/LICENSE-2.0
+  ~    https://www.apache.org/licenses/LICENSE-2.0
   ~
   ~  Unless required by applicable law or agreed to in writing,
   ~  software distributed under the License is distributed on an
@@ -18,8 +18,8 @@
   ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~-->
 
 <!-- Maven build settings for Travis CI -->
-<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-          xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
+<settings xmlns="https://maven.apache.org/SETTINGS/1.0.0" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"
+          xsi:schemaLocation="https://maven.apache.org/SETTINGS/1.0.0 https://maven.apache.org/xsd/settings-1.0.0.xsd">
     <servers>
         <server>
             <id>apache.snapshots.https</id>
diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt
index a0de7af..596c2cd 100644
--- a/RELEASE-NOTES.txt
+++ b/RELEASE-NOTES.txt
@@ -2,7 +2,7 @@ Apache Cayenne Release Notes
 ============================
 
 For the latest information visit project web site: 
-http://cayenne.apache.org/
+https://cayenne.apache.org/
 
 To browse individual bug reports check out project issue tracker:
 https://issues.apache.org/jira/browse/CAY
diff --git a/build-tools/cayenne-checkers/pom.xml b/build-tools/cayenne-checkers/pom.xml
index 776fdc1..696d103 100644
--- a/build-tools/cayenne-checkers/pom.xml
+++ b/build-tools/cayenne-checkers/pom.xml
@@ -8,7 +8,7 @@
   "License"); you may not use this file except in compliance
   with the License.  You may obtain a copy of the License at
 
-  http://www.apache.org/licenses/LICENSE-2.0
+  https://www.apache.org/licenses/LICENSE-2.0
 
   Unless required by applicable law or agreed to in writing,
   software distributed under the License is distributed on an
@@ -17,7 +17,7 @@
   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="https://maven.apache.org/POM/4.0.0" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
     <modelVersion>4.0.0</modelVersion>
 
     <groupId>org.apache.cayenne.build-tools</groupId>
@@ -43,14 +43,14 @@
     <licenses>
         <license>
             <name>The Apache Software License, Version 2.0</name>
-            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+            <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
             <distribution>repo</distribution>
         </license>
     </licenses>
 
     <organization>
         <name>Apache Cayenne</name>
-        <url>http://cayenne.apache.org/</url>
+        <url>https://cayenne.apache.org/</url>
     </organization>
 
     <build>
diff --git a/build-tools/cayenne-legal/pom.xml b/build-tools/cayenne-legal/pom.xml
index 4e0a31d..8fc3f19 100644
--- a/build-tools/cayenne-legal/pom.xml
+++ b/build-tools/cayenne-legal/pom.xml
@@ -8,7 +8,7 @@
 	"License"); you may not use this file except in compliance
 	with the License.  You may obtain a copy of the License at
 	
-	http://www.apache.org/licenses/LICENSE-2.0
+	https://www.apache.org/licenses/LICENSE-2.0
 	
 	Unless required by applicable law or agreed to in writing,
 	software distributed under the License is distributed on an
@@ -17,7 +17,7 @@
 	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="https://maven.apache.org/POM/4.0.0" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
 
 	<modelVersion>4.0.0</modelVersion>
 
diff --git a/build-tools/cayenne-test-utilities/pom.xml b/build-tools/cayenne-test-utilities/pom.xml
index 67ac020..ffb09bb 100644
--- a/build-tools/cayenne-test-utilities/pom.xml
+++ b/build-tools/cayenne-test-utilities/pom.xml
@@ -8,7 +8,7 @@
 	"License"); you may not use this file except in compliance
 	with the License.  You may obtain a copy of the License at
 	
-	http://www.apache.org/licenses/LICENSE-2.0
+	https://www.apache.org/licenses/LICENSE-2.0
 	
 	Unless required by applicable law or agreed to in writing,
 	software distributed under the License is distributed on an
@@ -17,7 +17,7 @@
 	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="https://maven.apache.org/POM/4.0.0" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
 
 	<modelVersion>4.0.0</modelVersion>
 
diff --git a/cayenne-ant/pom.xml b/cayenne-ant/pom.xml
index 37223b5..c06f6a5 100644
--- a/cayenne-ant/pom.xml
+++ b/cayenne-ant/pom.xml
@@ -8,7 +8,7 @@
 	"License"); you may not use this file except in compliance
 	with the License.  You may obtain a copy of the License at
 	
-	http://www.apache.org/licenses/LICENSE-2.0
+	https://www.apache.org/licenses/LICENSE-2.0
 	
 	Unless required by applicable law or agreed to in writing,
 	software distributed under the License is distributed on an
@@ -17,7 +17,7 @@
 	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="https://maven.apache.org/POM/4.0.0" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
 
 	<parent>
 		<artifactId>cayenne-parent</artifactId>
diff --git a/pom.xml b/pom.xml
index 1a326f0..647e9de 100644
--- a/pom.xml
+++ b/pom.xml
@@ -8,7 +8,7 @@
 	"License"); you may not use this file except in compliance
 	with the License.  You may obtain a copy of the License at
 	
-	http://www.apache.org/licenses/LICENSE-2.0
+	https://www.apache.org/licenses/LICENSE-2.0
 	
 	Unless required by applicable law or agreed to in writing,
 	software distributed under the License is distributed on an
@@ -17,7 +17,7 @@
 	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="https://maven.apache.org/POM/4.0.0" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/maven-v4_0_0.xsd">
 
 	<modelVersion>4.0.0</modelVersion>
 	<artifactId>cayenne-parent</artifactId>
@@ -45,7 +45,7 @@
         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
     </properties>
 
-	<url>http://cayenne.apache.org/</url>
+	<url>https://cayenne.apache.org/</url>
 	<modules>
 		<module>build-tools</module>
 		<module>cayenne-ant</module>
@@ -92,9 +92,9 @@
 			<unsubscribe>user-unsubscribe@cayenne.apache.org</unsubscribe>
 			<archive>https://lists.apache.org/list.html?user@cayenne.apache.org</archive>
 			<otherArchives>
-				<otherArchive>http://mail-archives.apache.org/mod_mbox/cayenne-user</otherArchive>
-				<otherArchive>http://cayenne.markmail.org/search/+list:org.apache.cayenne.user</otherArchive>
-				<otherArchive>http://dir.gmane.org/gmane.comp.java.cayenne.user</otherArchive>
+				<otherArchive>https://mail-archives.apache.org/mod_mbox/cayenne-user</otherArchive>
+				<otherArchive>https://cayenne.markmail.org/search/+list:org.apache.cayenne.user</otherArchive>
+				<otherArchive>https://dir.gmane.org/gmane.comp.java.cayenne.user</otherArchive>
 			</otherArchives>
 		</mailingList>
 		<mailingList>
@@ -104,9 +104,9 @@
 			<unsubscribe>dev-unsubscribe@cayenne.apache.org</unsubscribe>
 			<archive>https://lists.apache.org/list.html?dev@cayenne.apache.org</archive>
 			<otherArchives>
-				<otherArchive>http://mail-archives.apache.org/mod_mbox/cayenne-dev</otherArchive>
-				<otherArchive>http://cayenne.markmail.org/search/+list:org.apache.cayenne.dev</otherArchive>
-				<otherArchive>http://dir.gmane.org/gmane.comp.java.cayenne.devel</otherArchive>
+				<otherArchive>https://mail-archives.apache.org/mod_mbox/cayenne-dev</otherArchive>
+				<otherArchive>https://cayenne.markmail.org/search/+list:org.apache.cayenne.dev</otherArchive>
+				<otherArchive>https://dir.gmane.org/gmane.comp.java.cayenne.devel</otherArchive>
 			</otherArchives>
 		</mailingList>
 		<mailingList>
@@ -115,8 +115,8 @@
 			<unsubscribe>commits-unsubscribe@cayenne.apache.org</unsubscribe>
 			<archive>https://lists.apache.org/list.html?commits@cayenne.apache.org</archive>
 			<otherArchives>
-				<otherArchive>http://mail-archives.apache.org/mod_mbox/cayenne-commits</otherArchive>
-				<otherArchive>http://cayenne.markmail.org/search/+list:org.apache.cayenne.commits</otherArchive>
+				<otherArchive>https://mail-archives.apache.org/mod_mbox/cayenne-commits</otherArchive>
+				<otherArchive>https://cayenne.markmail.org/search/+list:org.apache.cayenne.commits</otherArchive>
 			</otherArchives>
 		</mailingList>
 	</mailingLists>
@@ -280,7 +280,7 @@
 	<licenses>
 		<license>
 			<name>The Apache Software License, Version 2.0</name>
-			<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+			<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
 			<distribution>repo</distribution>
 		</license>
 	</licenses>
@@ -292,7 +292,7 @@
 	</scm>
 	<organization>
 		<name>Apache Cayenne</name>
-		<url>http://cayenne.apache.org/</url>
+		<url>https://cayenne.apache.org/</url>
 	</organization>
 	<dependencyManagement>
 		<dependencies>