~ubuntu-branches/ubuntu/trusty/wagon2/trusty-proposed

« back to all changes in this revision

Viewing changes to wagon-providers/wagon-http-shared4/pom.xml

  • Committer: Package Import Robot
  • Author(s): Damien Raude-Morvan
  • Date: 2012-01-29 23:23:22 UTC
  • Revision ID: package-import@ubuntu.com-20120129232322-w9h5j9c81zi8f23o
Tags: upstream-2.2
ImportĀ upstreamĀ versionĀ 2.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="UTF-8"?>
 
2
<!--
 
3
Licensed to the Apache Software Foundation (ASF) under one
 
4
or more contributor license agreements.  See the NOTICE file
 
5
distributed with this work for additional information
 
6
regarding copyright ownership.  The ASF licenses this file
 
7
to you under the Apache License, Version 2.0 (the
 
8
"License"); you may not use this file except in compliance
 
9
with the License.  You may obtain a copy of the License at
 
10
 
 
11
  http://www.apache.org/licenses/LICENSE-2.0
 
12
 
 
13
Unless required by applicable law or agreed to in writing,
 
14
software distributed under the License is distributed on an
 
15
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 
16
KIND, either express or implied.  See the License for the
 
17
specific language governing permissions and limitations
 
18
under the License.
 
19
-->
 
20
<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/xsd/maven-4.0.0.xsd">
 
21
  <modelVersion>4.0.0</modelVersion>
 
22
 
 
23
  <parent>
 
24
    <groupId>org.apache.maven.wagon</groupId>
 
25
    <artifactId>wagon-providers</artifactId>
 
26
    <version>2.2</version>
 
27
    <relativePath>../pom.xml</relativePath>
 
28
  </parent>
 
29
 
 
30
  <artifactId>wagon-http-shared4</artifactId>
 
31
  <name>Apache Maven Wagon :: Providers :: HTTP Shared Library 4</name>
 
32
  <description>
 
33
    Shared Library for the wagon-http, and wagon-http-lightweight wagon
 
34
    providers based on httpclient-4.x.
 
35
  </description>
 
36
 
 
37
  <dependencies>
 
38
  
 
39
    <dependency>
 
40
      <groupId>org.jsoup</groupId>
 
41
      <artifactId>jsoup</artifactId>
 
42
      <version>1.6.1</version>
 
43
    </dependency>
 
44
    <dependency>
 
45
      <groupId>org.apache.httpcomponents</groupId>
 
46
      <artifactId>httpclient</artifactId>
 
47
    </dependency>
 
48
    <dependency>
 
49
      <groupId>org.apache.httpcomponents</groupId>
 
50
      <artifactId>httpcore</artifactId>
 
51
    </dependency>
 
52
    <dependency>
 
53
      <groupId>commons-logging</groupId>
 
54
      <artifactId>commons-logging</artifactId>
 
55
      <version>1.1.1</version>
 
56
    </dependency>
 
57
    <dependency>
 
58
        <groupId>commons-io</groupId>
 
59
        <artifactId>commons-io</artifactId>
 
60
        <version>2.0.1</version>
 
61
    </dependency>
 
62
  </dependencies>
 
63
</project>