You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@orc.apache.org by pg...@apache.org on 2021/08/04 08:58:19 UTC

[orc] branch branch-1.7 updated: ORC-908: Use https instead of http for website links in 'pom.xml' (#814)

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

pgaref pushed a commit to branch branch-1.7
in repository https://gitbox.apache.org/repos/asf/orc.git


The following commit(s) were added to refs/heads/branch-1.7 by this push:
     new 7e72699  ORC-908: Use https instead of http for website links in 'pom.xml' (#814)
7e72699 is described below

commit 7e72699b1beb0e9eb787a82cfda30a37a9de383d
Author: Dongjoon Hyun <do...@apache.org>
AuthorDate: Wed Aug 4 01:34:50 2021 -0700

    ORC-908: Use https instead of http for website links in 'pom.xml' (#814)
    
    ### What changes were proposed in this pull request?
    
    This PR aims to use `https` instead of `http` for website links in `pom.xml`.
    
    ### Why are the changes needed?
    
    To introduce safer links.
    
    ### How was this patch tested?
    
    N/A
---
 java/pom.xml | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/java/pom.xml b/java/pom.xml
index dcdc177..b2b6141 100644
--- a/java/pom.xml
+++ b/java/pom.xml
@@ -25,7 +25,7 @@
   <packaging>pom</packaging>
 
   <name>Apache ORC</name>
-  <url>http://orc.apache.org</url>
+  <url>https://orc.apache.org</url>
   <description>
      ORC is a self-describing type-aware columnar file format designed
      for Hadoop workloads. It is optimized for large streaming reads,
@@ -42,14 +42,14 @@
       <subscribe>user-subscribe@orc.apache.org</subscribe>
       <unsubscribe>user-unsubscribe@orc.apache.org</unsubscribe>
       <post>user@orc.apache.org</post>
-      <archive>http://mail-archives.apache.org/mod_mbox/orc-user/</archive>
+      <archive>https://mail-archives.apache.org/mod_mbox/orc-user/</archive>
     </mailingList>
     <mailingList>
       <name>ORC Developer List</name>
       <subscribe>dev-subscribe@orc.apache.org</subscribe>
       <unsubscribe>dev-unsubscribe@orc.apache.org</unsubscribe>
       <post>dev@orc.apache.org</post>
-      <archive>http://mail-archives.apache.org/mod_mbox/orc-dev/</archive>
+      <archive>https://mail-archives.apache.org/mod_mbox/orc-dev/</archive>
     </mailingList>
   </mailingLists>
 
@@ -108,23 +108,23 @@
         <artifactId>maven-javadoc-plugin</artifactId>
         <configuration>
           <links>
-            <link>http://hadoop.apache.org/docs/r${hadoop.version}/api</link>
-            <link>http://orc.apache.org/api/hive-storage-api</link>
-            <link>http://orc.apache.org/api/orc-core</link>
-            <link>http://orc.apache.org/api/orc-mapreduce</link>
-            <link>http://orc.apache.org/api/orc-tools</link>
+            <link>https://hadoop.apache.org/docs/r${hadoop.version}/api</link>
+            <link>https://orc.apache.org/api/hive-storage-api</link>
+            <link>https://orc.apache.org/api/orc-core</link>
+            <link>https://orc.apache.org/api/orc-mapreduce</link>
+            <link>https://orc.apache.org/api/orc-tools</link>
           </links>
           <offlineLinks>
             <offlineLink>
-              <url>http://orc.apache.org/api/hive-storage-api</url>
+              <url>https://orc.apache.org/api/hive-storage-api</url>
               <location>${project.basedir}/../../site/api/hive-storage-api</location>
             </offlineLink>
             <offlineLink>
-              <url>http://orc.apache.org/api/orc-core</url>
+              <url>https://orc.apache.org/api/orc-core</url>
               <location>${project.basedir}/../../site/api/orc-core</location>
             </offlineLink>
             <offlineLink>
-              <url>http://orc.apache.org/api/orc-mapreduce</url>
+              <url>https://orc.apache.org/api/orc-mapreduce</url>
               <location>${project.basedir}/../../site/api/orc-mapreduce</location>
             </offlineLink>
           </offlineLinks>