You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@gobblin.apache.org by su...@apache.org on 2021/05/18 04:10:40 UTC

[gobblin] branch master updated: [GOBBLIN-1447] Fix url for linkedin jfrog, add pentaho dependency link

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 2e5eaca  [GOBBLIN-1447] Fix url for linkedin jfrog, add pentaho dependency link
2e5eaca is described below

commit 2e5eacad5f52cbae88b9cb7b70cb175765fe4d3c
Author: William Lo <lo...@gmail.com>
AuthorDate: Mon May 17 21:10:32 2021 -0700

    [GOBBLIN-1447] Fix url for linkedin jfrog, add pentaho dependency link
    
    Closes #3284 from Will-Lo/fix-repository-
    dependencies
---
 gradle/scripts/repositories.gradle | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/gradle/scripts/repositories.gradle b/gradle/scripts/repositories.gradle
index a135565..32d00f1 100644
--- a/gradle/scripts/repositories.gradle
+++ b/gradle/scripts/repositories.gradle
@@ -18,6 +18,9 @@
 repositories {
   mavenCentral()
   maven {
+    url "http://nexus.pentaho.org/content/groups/omni"
+  }
+  maven {
     url "https://plugins.gradle.org/m2/"
   }
   maven {
@@ -30,7 +33,7 @@ repositories {
     url "https://repository.apache.org/content/repositories/snapshots"
   }
   maven {
-    url "https://linkedin.jfrog.com/artifactory/"
+    url "https://linkedin.jfrog.io/artifactory/"
   }
   jcenter()
 }