You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@carbondata.apache.org by aj...@apache.org on 2020/01/16 11:00:02 UTC

[carbondata] branch master updated: [HOTFIX] Making maven repo changes in pom.xml

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 1613ed9  [HOTFIX] Making maven repo changes in pom.xml
1613ed9 is described below

commit 1613ed9f94a727fcb453320858e3b59b3d832995
Author: Pankaj Yadav <ya...@gmail.com>
AuthorDate: Thu Jan 16 14:33:56 2020 +0530

    [HOTFIX] Making maven repo changes in pom.xml
    
    Why is this PR needed?
    To use https instead of http to connect central maven repo
    
    What changes were proposed in this PR?
    Changes made to use https instead of http to connect central maven repo
    that is https://repo.maven.apache.org/maven2 instead of
    http://repo.maven.apache.org/maven2
    
    Link for clarification :
    https://stackoverflow.com/questions/59763531/maven-dependencies-are-failing-with-501-error
    
    Does this PR introduce any user interface change?
    No
    
    Is any new testcase added?
    No
    
    This closes #3582
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index 6ff7233..e54b8ea 100644
--- a/pom.xml
+++ b/pom.xml
@@ -150,7 +150,7 @@
       <id>central</id>
       <!-- This should be at top, it makes maven try the central repo first and then others and hence faster dep resolution -->
       <name>Maven Repository</name>
-      <url>http://repo1.maven.org/maven2</url>
+      <url>https://repo1.maven.org/maven2</url>
       <releases>
         <enabled>true</enabled>
       </releases>