Maven Repository - POM file for Network wagon-webdav 1.0-beta-2-hudson-1 1.0-beta-2-hudson-1

Summary

Maven Wagon WebDav Provider.

Wagon that gets and puts artifacts through webdav protocol.

Declaration

Here is the list of declaration for wagon-webdav. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>org.jvnet.hudson</groupId>
   <artifactId>wagon-webdav</artifactId>
   <version>1.0-beta-2-hudson-1</version>
</dependency>

If you think this Maven repository POM file listing for wagon-webdav is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Depends on

The wagon-webdav-1.0-beta-2-hudson-1 has 5 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
Logcommons-logging 1.0.4
Commons Logging is a thin adapter allowing configurable bridging to other, well known logging systems.
273
Servletwebdav 0.4
A Simple Approach to WebDAV (Servlet Implementation)
10




Depended by

The following table lists the most popular artifacts which are depending on wagon-webdav-1.0-beta-2-hudson-1. Their categories and depend by count are also listed.

CategoryArtifactDepended By Count
Buildmaven-plugin 2.2.1
This plug-in provides deep integration of Hudson and Maven. This functionality used to be part of the Hudson core. Now it is a plug-in that is installed by default, but can be disabled.
5
Buildmaven-plugin 3.0.1
This plug-in is needed if you have legacy maven 2 job type. Preferred way to use maven in Hudson is by using maven as a builder in your Free Style job, which is provided by Maven 3 plugin. Version 3.0.1 of this plugin requires Hudson Version 3.1.2 or later.
8

Packages

The following packages are defined in the wagon-webdav-1.0-beta-2-hudson-1.jar

org.apache.maven.wagon.providers.webdav

POM File Source

Here is the content of the POM file.

<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">
  <parent>
    <artifactId>wagon-providers</artifactId>
    <groupId>org.apache.maven.wagon</groupId>
    <version>1.0-beta-2</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>wagon-webdav</artifactId>
  <name>Maven Wagon WebDav Provider</name>
  <description>
    Wagon that gets and puts artifacts through webdav protocol
  </description>

  <!-- patched for Hudson -->
  <groupId>org.jvnet.hudson</groupId>
  <version>1.0-beta-2-hudson-1</version>
  <build>
    <extensions>
      <extension>
        <groupId>org.jvnet.wagon-svn</groupId>
        <artifactId>wagon-svn</artifactId>
        <version>1.8</version>
      </extension>
    </extensions>
  </build>
  <distributionManagement>
    <repository>
      <uniqueVersion>false</uniqueVersion>
      <id>java.net-m2-repository</id>
      <url>java-net:/maven2-repository/trunk/www/repository/</url>
    </repository>
  </distributionManagement>
  <!-- until here -->

  <contributors>
    <contributor>
      <name>Henry Isidro</name>
      <email>hisidro@exist.com</email>
    </contributor>
    <contributor>
      <name>Joakim Erdfelt</name>
      <email>joakim@erdfelt.com</email>
    </contributor>
  </contributors>

  <dependencies>
    <dependency>
      <groupId>slide</groupId>
      <artifactId>slide-webdavlib</artifactId>
      <version>2.1</version>
    </dependency>
    <dependency>
      <groupId>commons-logging</groupId>
      <artifactId>commons-logging</artifactId>
      <version>1.0.4</version>
      <scope>runtime</scope>
    </dependency>
    <dependency>
      <groupId>it.could</groupId>
      <artifactId>webdav</artifactId>
      <version>0.4</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.mortbay.jetty</groupId>
      <artifactId>jetty</artifactId>
      <version>4.2.12</version>
      <scope>test</scope>
    </dependency>
    <!-- this is the version that Hudson uses -->
    <dependency>
      <groupId>commons-httpclient</groupId>
      <artifactId>commons-httpclient</artifactId>
      <version>3.1-rc1</version>
    </dependency>
  </dependencies>
</project>