You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by zj...@apache.org on 2021/06/16 23:18:47 UTC

[zeppelin] branch branch-0.9 updated: [ZEPPELIN-5409] Zeppelin server fails to start due to java.lang.ClassNotFoundException: org.apache.commons.vfs2.provider.webdav.WebdavFileProvider

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

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


The following commit(s) were added to refs/heads/branch-0.9 by this push:
     new b9c4fb2  [ZEPPELIN-5409] Zeppelin server fails to start due to java.lang.ClassNotFoundException: org.apache.commons.vfs2.provider.webdav.WebdavFileProvider
b9c4fb2 is described below

commit b9c4fb2e01d86bf51b9cbf7d5cb7779ba0dab4fb
Author: Jeff Zhang <zj...@apache.org>
AuthorDate: Sun Jun 13 15:05:54 2021 +0800

    [ZEPPELIN-5409] Zeppelin server fails to start due to java.lang.ClassNotFoundException: org.apache.commons.vfs2.provider.webdav.WebdavFileProvider
    
    ### What is this PR for?
    
    This is a regression issue caused by ZEPPELIN-5303, we should upgrade `commons-vfs2-jackrabbit1` as well
    
    ### What type of PR is it?
    [Bug Fix ]
    
    ### Todos
    * [ ] - Task
    
    ### What is the Jira issue?
    * https://issues.apache.org/jira/browse/ZEPPELIN-5409
    
    ### How should this be tested?
    * CI pass
    
    ### Screenshots (if appropriate)
    
    ### Questions:
    * Does the licenses files need update? No
    * Is there breaking changes for older versions? No
    * Does this needs documentation? No
    
    Author: Jeff Zhang <zj...@apache.org>
    
    Closes #4136 from zjffdu/ZEPPELIN-5409 and squashes the following commits:
    
    58da475edf [Jeff Zhang] [ZEPPELIN-5409] Zeppelin server fails to start due to java.lang.ClassNotFoundException: org.apache.commons.vfs2.provider.webdav.WebdavFileProvider
    
    (cherry picked from commit 628f064fc4ff1d307c24e7c83758c7b952bc644e)
    Signed-off-by: Jeff Zhang <zj...@apache.org>
---
 zeppelin-zengine/pom.xml | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/zeppelin-zengine/pom.xml b/zeppelin-zengine/pom.xml
index d23aa18..b2d517c 100644
--- a/zeppelin-zengine/pom.xml
+++ b/zeppelin-zengine/pom.xml
@@ -37,7 +37,6 @@
 
   <properties>
     <!--library versions-->
-    <jackrabbit.webdav.version>1.5.2</jackrabbit.webdav.version>
     <lucene.version>5.3.1</lucene.version>
     <org.reflections.version>0.9.8</org.reflections.version>
     <xml.apis.version>1.4.01</xml.apis.version>
@@ -98,11 +97,10 @@
       <artifactId>bcpkix-jdk15on</artifactId>
     </dependency>
 
-
     <dependency>
-      <groupId>org.apache.jackrabbit</groupId>
-      <artifactId>jackrabbit-webdav</artifactId>
-      <version>${jackrabbit.webdav.version}</version>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-vfs2-jackrabbit1</artifactId>
+      <version>${commons.vfs2.version}</version>
       <exclusions>
         <exclusion>
           <groupId>commons-httpclient</groupId>