You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by ud...@apache.org on 2020/02/05 02:12:10 UTC

[beam] branch master updated: Convert repo.spring.io to use https + 1 other

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 4de654c  Convert repo.spring.io to use https + 1 other
     new 71008f3  Merge pull request #10771 from udim/https-repos
4de654c is described below

commit 4de654c18acca5f1b7c44d7b6d06d357f55b5cc0
Author: Udi Meiri <eh...@google.com>
AuthorDate: Tue Feb 4 16:38:38 2020 -0800

    Convert repo.spring.io to use https + 1 other
    
    http://repo.spring.io/ is currently returning 403:
    ```
    HTTP is not supported. Please use HTTPS
    ```
---
 buildSrc/src/main/groovy/org/apache/beam/gradle/Repositories.groovy | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/buildSrc/src/main/groovy/org/apache/beam/gradle/Repositories.groovy b/buildSrc/src/main/groovy/org/apache/beam/gradle/Repositories.groovy
index a894b85..31c46d3 100644
--- a/buildSrc/src/main/groovy/org/apache/beam/gradle/Repositories.groovy
+++ b/buildSrc/src/main/groovy/org/apache/beam/gradle/Repositories.groovy
@@ -57,7 +57,7 @@ class Repositories {
 
       // For Confluent Kafka dependencies
       maven {
-        url "http://packages.confluent.io/maven/"
+        url "https://packages.confluent.io/maven/"
         content { includeGroup "io.confluent" }
       }
     }
@@ -76,7 +76,7 @@ class Repositories {
         mavenCentral()
         jcenter()
         maven { url "https://plugins.gradle.org/m2/" }
-        maven { url "http://repo.spring.io/plugins-release" }
+        maven { url "https://repo.spring.io/plugins-release" }
         maven { url project.offlineRepositoryRoot }
       }
       includeSources = false