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

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


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

commit 628f064fc4ff1d307c24e7c83758c7b952bc644e
Author: Jeff Zhang <zjf...@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 <zjf...@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
---
 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 221fd6c..b1e2f46 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>

Reply via email to