You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bigtop.apache.org by of...@apache.org on 2019/02/26 19:56:24 UTC

[bigtop] branch master updated: BIGTOP-3178: Fix two insecure maven repositories

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 44d62c7  BIGTOP-3178: Fix two insecure maven repositories
44d62c7 is described below

commit 44d62c711cd82ab89f3d9d9a1bd34d1aa8e97f8c
Author: Olaf Flebbe <of...@apache.org>
AuthorDate: Mon Feb 25 19:27:07 2019 +0100

    BIGTOP-3178: Fix two insecure maven repositories
---
 bigtop-bigpetstore/bigpetstore-transaction-queue/build.gradle | 2 +-
 bigtop-tests/smoke-tests/odpi-runtime/build.gradle            | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/bigtop-bigpetstore/bigpetstore-transaction-queue/build.gradle b/bigtop-bigpetstore/bigpetstore-transaction-queue/build.gradle
index 7172cc4..3060eda 100644
--- a/bigtop-bigpetstore/bigpetstore-transaction-queue/build.gradle
+++ b/bigtop-bigpetstore/bigpetstore-transaction-queue/build.gradle
@@ -43,7 +43,7 @@ task fatJar(type: Jar) {
 repositories {
     mavenCentral()
     maven {
-       url "http://dl.bintray.com/rnowling/bigpetstore"
+       url "https://dl.bintray.com/rnowling/bigpetstore"
    }
 }
 
diff --git a/bigtop-tests/smoke-tests/odpi-runtime/build.gradle b/bigtop-tests/smoke-tests/odpi-runtime/build.gradle
index 6132734..8a8fba3 100644
--- a/bigtop-tests/smoke-tests/odpi-runtime/build.gradle
+++ b/bigtop-tests/smoke-tests/odpi-runtime/build.gradle
@@ -21,7 +21,7 @@ apply plugin: 'java'
 
 repositories {
   maven {
-    url "http://conjars.org/repo/"
+    url "https://conjars.org/repo/"
   }
 }
 dependencies {