[ 
https://issues.apache.org/jira/browse/JCR-4077?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15732689#comment-15732689
 ] 

Julian Reschke commented on JCR-4077:
-------------------------------------

What *does* seem to work is to *replace* the dependency on jackrabbit-webdav 
with one on httpclient 3.1:

{noformat}
--- jackrabbit-vfs-ext/pom.xml  (revision 1773260)
+++ jackrabbit-vfs-ext/pom.xml  (working copy)
@@ -57,16 +57,22 @@
             <artifactId>jackrabbit-data</artifactId>
             <version>${project.version}</version>
         </dependency>
-        <!-- For WebDAV client against WebDAV server backend -->
         <dependency>
-            <groupId>org.apache.jackrabbit</groupId>
-            <artifactId>jackrabbit-webdav</artifactId>
-            <version>${project.version}</version>
-        </dependency>
-        <dependency>
             <groupId>org.slf4j</groupId>
             <artifactId>slf4j-api</artifactId>
         </dependency>
+        <dependency>
+          <groupId>commons-httpclient</groupId>
+          <artifactId>commons-httpclient</artifactId>
+          <version>3.1</version>
+          <exclusions>
+            <!-- JCR-2411: Replace commons-logging with jcl-over-slf4j -->
+            <exclusion>
+              <groupId>commons-logging</groupId>
+              <artifactId>commons-logging</artifactId>
+            </exclusion>
+          </exclusions>
+        </dependency>
{noformat}


> disable Jackrabbit VFS Extension (?)
> ------------------------------------
>
>                 Key: JCR-4077
>                 URL: https://issues.apache.org/jira/browse/JCR-4077
>             Project: Jackrabbit Content Repository
>          Issue Type: Sub-task
>          Components: jackrabbit-vfs-ext
>    Affects Versions: 2.13.6
>            Reporter: Julian Reschke
>             Fix For: 2.14
>
>
> Switching to the new httpclient code will break jackrabbit-vfs-ext, which has 
> a dependency on the older version.
> (Suggestions about how to deal with this welcome)



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to