Jackrabbit WebDAV Library.
WebDAV library used by the Jackrabbit WebDAV support.
Here is the list of declaration for jackrabbit-webdav. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.apache.jackrabbit</groupId> <artifactId>jackrabbit-webdav</artifactId> <version>1.5.0</version> </dependency>
If you think this Maven repository POM file listing for jackrabbit-webdav is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Apache License.
The jackrabbit-webdav-1.5.0 has 1 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
ORM | jackrabbit-jcr-commons 1.5.0 General purpose classes for use with the JCR API | 12 |
The following plugins are used in the jackrabbit-webdav-1.5.0.jar
The following packages are defined in the jackrabbit-webdav-1.5.0.jar
org.apache.jackrabbit.webdav org.apache.jackrabbit.webdav.bind org.apache.jackrabbit.webdav.client.methods org.apache.jackrabbit.webdav.header org.apache.jackrabbit.webdav.io org.apache.jackrabbit.webdav.lock org.apache.jackrabbit.webdav.observation org.apache.jackrabbit.webdav.ordering org.apache.jackrabbit.webdav.property org.apache.jackrabbit.webdav.search org.apache.jackrabbit.webdav.security org.apache.jackrabbit.webdav.security.report org.apache.jackrabbit.webdav.server org.apache.jackrabbit.webdav.transaction org.apache.jackrabbit.webdav.util org.apache.jackrabbit.webdav.version org.apache.jackrabbit.webdav.version.report org.apache.jackrabbit.webdav.xml
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <!-- ====================================================================== --> <!-- P R O J E C T D E S C R I P T I O N --> <!-- ====================================================================== --> <parent> <groupId>org.apache.jackrabbit</groupId> <artifactId>jackrabbit-parent</artifactId> <version>1.5.0</version> <relativePath>../jackrabbit-parent/pom.xml</relativePath> </parent> <artifactId>jackrabbit-webdav</artifactId> <name>Jackrabbit WebDAV Library</name> <description>WebDAV library used by the Jackrabbit WebDAV support</description> <scm> <connection> scm:svn:http://svn.apache.org/repos/asf/jackrabbit/trunk/jackrabbit-webdav </connection> <developerConnection> scm:svn:https://svn.apache.org/repos/asf/jackrabbit/trunk/jackrabbit-webdav </developerConnection> <url>http://svn.apache.org/viewvc/jackrabbit/trunk/jackrabbit-webdav</url> </scm> <build> <plugins> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <includes> <include>**/*TestAll.java</include> </includes> <forkMode>once</forkMode> <argLine>-Xmx128m -enableassertions</argLine> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.apache.jackrabbit</groupId> <artifactId>jackrabbit-jcr-commons</artifactId> <version>1.5.0</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>commons-httpclient</groupId> <artifactId>commons-httpclient</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <scope>test</scope> </dependency> </dependencies> </project>