simple-webdav-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.crowdcode.webdav</groupId>
<artifactId>simple-webdav-client</artifactId>
<version>0.0.6</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.crowdcode.webdav</groupId>
<artifactId>simple-webdav-client</artifactId>
<version>0.0.6</version>
<packaging>jar</packaging>
<name>Simple WebDAV Client</name>
<description>Simple WebDAV abstraction making java use of Jackrabbit Lib more easy</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.lang.level>11</java.lang.level>
<httpclient.version>4.5.12</httpclient.version>
</properties>
<url>https://github.com/crowdcode-de/simple-webdav-client</url>
<developers>
<developer>
<id>idueppe</id>
<name>Ingo Dueppe</name>
<email>ingo.dueppe@crowdcode.io</email>
<organization>Crowdcode GmbH + Co. KG</organization>
<organizationUrl>https://www.crowdcode.io</organizationUrl>
</developer>
<developer>
<id>cschemmy</id>
<name>Christoph Schemmelmann</name>
<email>christoph.schemmelmann@crowdcode.io</email>
<organization>Crowdcode GmbH + Co. KG</organization>
<organizationUrl>https://www.crowdcode.io</organizationUrl>
</developer>
<developer>
<email>marcus.noerder-tuitje@crowdcode.io</email>
<name>Marcus Noerder-Tuitje</name>
<organization>CROWDCODE GmbH + Co. KG.</organization>
<organizationUrl>https://crowdcode.io</organizationUrl>
</developer>
</developers>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<organization>
<name>Crowdcode GmbH + Co.KG</name>
<url>http://crowdcode.io</url>
</organization>
<scm>
<connection>scm:git:https://github.com/crowdcode-de/simple-webdav-client.git</connection>
<developerConnection>scm:svn:https://github.com/crowdcode-de/simple-webdav-client.git</developerConnection>
<url>https://github.com/crowdcode-de/simple-webdav-client</url>
</scm>
<dependencies>
<!-- https://mvnrepository.com/artifact/org.apache.jackrabbit/jackrabbit-webdav -->
<dependency>
<groupId>org.apache.jackrabbit</groupId>
<artifactId>jackrabbit-webdav</artifactId>
<version>2.17.5</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.9</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.7</version>
</dependency>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
<version>20160810</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.6.2</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<parameters>true</parameters>
<source>${java.lang.level}</source>
<target>${java.lang.level}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<phase>package</phase>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>sign-jar</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>sonatype</id>
<distributionManagement>
<!-- Publish versioned releases here -->
<repository>
<id>sonatype-staging</id>
<name>Sonatype Release Staging Repository</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
<!-- Publish snapshots here -->
<snapshotRepository>
<id>sonatype-snapshot</id>
<name>Sonatype Snapshot Repository</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<id>generate-javadoc</id>
<phase>generate-resources</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<executable>C:\Program Files\Git\usr\bin\gpg.exe</executable>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>