Simple WebDAV.
A Simple Approach to WebDAV (Servlet Implementation).
Here is the list of declaration for webdav. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>it.could</groupId> <artifactId>webdav</artifactId> <version>0.4</version> </dependency>
If you think this Maven repository POM file listing for webdav is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:Apache License v2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.
The following table lists the most popular artifacts which are depending on webdav-0.4. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
ORM | wagon-webdav-jackrabbit 2.2 Wagon that gets and puts artifacts through webdav protocol | 8 |
Network | wagon-webdav 1.0-beta-2-hudson-1 Wagon that gets and puts artifacts through webdav protocol | 49 |
The following packages are defined in the webdav-0.4.jar
it.could.util it.could.util.encoding it.could.util.http it.could.util.location it.could.webdav it.could.webdav.methods it.could.webdav.replication org.betaversion.webdav
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <project> <modelVersion>4.0.0</modelVersion> <groupId>it.could</groupId> <artifactId>webdav</artifactId> <version>0.4</version> <name>Simple WebDAV</name> <description> A Simple Approach to WebDAV (Servlet Implementation) </description> <url>http://could.it/main/a-simple-approach-to-webdav.html</url> <licenses> <license> <name>Apache License v2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> </license> </licenses> <scm> <connection>http://could.it/repo/webdav/head/</connection> </scm> <dependencies> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.3</version> <scope>runtime</scope> </dependency> </dependencies> </project>