You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by pr...@apache.org on 2019/06/14 04:27:56 UTC

[zeppelin] branch branch-0.8 updated: [ZEPPELIN-4192] Travis CI fails for dependency download (#3381)

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

prabhjyotsingh pushed a commit to branch branch-0.8
in repository https://gitbox.apache.org/repos/asf/zeppelin.git


The following commit(s) were added to refs/heads/branch-0.8 by this push:
     new bf2cb0a  [ZEPPELIN-4192] Travis CI fails for dependency download (#3381)
bf2cb0a is described below

commit bf2cb0ac9df187289ec4535d4a6bf36ad8398d9f
Author: Prabhjyot <pr...@gmail.com>
AuthorDate: Fri Jun 14 09:35:36 2019 +0530

    [ZEPPELIN-4192] Travis CI fails for dependency download (#3381)
    
    * [ZEPPELIN-4192] temporarily disable agimatec-validation download
    
    Change-Id: I100efae19a01eb2399a8b43e85ebf8a507916949
    
    * replace agimatec-releases with ksoap2-android-releases
    
    Change-Id: I34c240a19f0bd4e3e977ac496547482c39fd5f1e
    
    # Conflicts:
    #	zeppelin-interpreter/src/test/java/org/apache/zeppelin/dep/DependencyResolverTest.java
---
 .../java/org/apache/zeppelin/dep/DependencyResolverTest.java     | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/zeppelin-interpreter/src/test/java/org/apache/zeppelin/dep/DependencyResolverTest.java b/zeppelin-interpreter/src/test/java/org/apache/zeppelin/dep/DependencyResolverTest.java
index 876e8e7..4afd080 100644
--- a/zeppelin-interpreter/src/test/java/org/apache/zeppelin/dep/DependencyResolverTest.java
+++ b/zeppelin-interpreter/src/test/java/org/apache/zeppelin/dep/DependencyResolverTest.java
@@ -85,9 +85,10 @@ public class DependencyResolverTest {
     FileUtils.cleanDirectory(testCopyPath);
 
     // load from added repository
-    resolver.addRepo("sonatype", "https://oss.sonatype.org/content/repositories/agimatec-releases/", false);
-    resolver.load("com.agimatec:agimatec-validation:0.9.3", testCopyPath);
-    assertEquals(testCopyPath.list().length, 8);
+    resolver.addRepo("sonatype",
+        "https://oss.sonatype.org/content/repositories/ksoap2-android-releases/", false);
+    resolver.load("com.google.code.ksoap2-android:ksoap2-jsoup:3.6.3", testCopyPath);
+    assertEquals(testCopyPath.list().length, 10);
 
     // load invalid artifact
     resolver.delRepo("sonatype");
@@ -103,4 +104,4 @@ public class DependencyResolverTest {
     resolver.load("one.two:1.0", testCopyPath);
   }
 
-}
\ No newline at end of file
+}