Skip to content
This repository was archived by the owner on Aug 11, 2020. It is now read-only.

Commit 4791c7e

Browse files
committed
Fix Issue #2
Added local dependecy of sardine 314
1 parent f3453d8 commit 4791c7e

2 files changed

Lines changed: 70 additions & 0 deletions

File tree

74.4 KB
Binary file not shown.
Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
<!--
2+
- Copyright 2009-2011 Jon Stevens et al.
3+
-
4+
- Licensed under the Apache License, Version 2.0 (the "License");
5+
- you may not use this file except in compliance with the License.
6+
- You may obtain a copy of the License at
7+
-
8+
- http://www.apache.org/licenses/LICENSE-2.0
9+
-
10+
- Unless required by applicable law or agreed to in writing, software
11+
- distributed under the License is distributed on an "AS IS" BASIS,
12+
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
- See the License for the specific language governing permissions and
14+
- limitations under the License.
15+
-->
16+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
17+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
18+
<modelVersion>4.0.0</modelVersion>
19+
20+
<groupId>com.googlecode.sardine</groupId>
21+
<artifactId>sardine</artifactId>
22+
<packaging>jar</packaging>
23+
<version>314</version>
24+
25+
<name>Sardine WebDAV client</name>
26+
<url>http://code.google.com/p/sardine/</url>
27+
<description>An easy to use WebDAV client for Java.</description>
28+
29+
<dependencies>
30+
<dependency>
31+
<groupId>org.apache.httpcomponents</groupId>
32+
<artifactId>httpclient</artifactId>
33+
<version>4.1.1</version>
34+
</dependency>
35+
<dependency>
36+
<groupId>org.apache.httpcomponents</groupId>
37+
<artifactId>httpcore</artifactId>
38+
<version>4.1.1</version>
39+
</dependency>
40+
<!-- JAXB is not included in JDK 5. -->
41+
<dependency>
42+
<groupId>javax.xml.bind</groupId>
43+
<artifactId>jaxb-api</artifactId>
44+
<version>2.1</version>
45+
<scope>provided</scope>
46+
</dependency>
47+
<dependency>
48+
<groupId>com.sun.xml.bind</groupId>
49+
<artifactId>jaxb-impl</artifactId>
50+
<version>2.1.12</version>
51+
<scope>provided</scope>
52+
</dependency>
53+
<dependency>
54+
<groupId>commons-codec</groupId>
55+
<artifactId>commons-codec</artifactId>
56+
<version>1.4</version>
57+
</dependency>
58+
<dependency>
59+
<groupId>commons-logging</groupId>
60+
<artifactId>commons-logging</artifactId>
61+
<version>1.1.1</version>
62+
</dependency>
63+
<dependency>
64+
<groupId>junit</groupId>
65+
<artifactId>junit</artifactId>
66+
<version>4.8.2</version>
67+
<scope>test</scope>
68+
</dependency>
69+
</dependencies>
70+
</project>

0 commit comments

Comments
 (0)