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

« back to all changes in this revision

Viewing changes to .pc/do_not_run_http_tests.patch/wagon-providers/wagon-http/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-sv7vn8958hvr69e9
Tags: 2.2-1
* New upstream release:
  - It's a major release so use a new source package: wagon2.
  - Old wagon package have to be kept for maven 2.x build.

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</artifactId>
 
31
  <name>Apache Maven Wagon :: Providers :: HTTP Provider</name>
 
32
  <description>
 
33
    Wagon that gets and puts artifacts through http using Apache httpclient-4.x.
 
34
  </description>
 
35
 
 
36
 
 
37
  <dependencies>
 
38
    <dependency>
 
39
      <groupId>${project.groupId}</groupId>
 
40
      <artifactId>wagon-http-shared4</artifactId>
 
41
      <version>${project.version}</version>
 
42
    </dependency>
 
43
    <dependency>
 
44
      <groupId>org.apache.httpcomponents</groupId>
 
45
      <artifactId>httpclient</artifactId>
 
46
    </dependency>
 
47
    <dependency>
 
48
      <groupId>org.apache.httpcomponents</groupId>
 
49
      <artifactId>httpcore</artifactId>
 
50
    </dependency>
 
51
 
 
52
    <!-- used fo the TCK -->
 
53
    <dependency>
 
54
      <groupId>org.apache.maven.wagon</groupId>
 
55
      <artifactId>wagon-tck-http</artifactId>
 
56
      <version>${project.version}</version>
 
57
      <scope>test</scope>
 
58
    </dependency>
 
59
 
 
60
  </dependencies>
 
61
 
 
62
 
 
63
  <build>
 
64
    <plugins>
 
65
      <plugin>
 
66
        <groupId>org.apache.maven.plugins</groupId>
 
67
        <artifactId>maven-shade-plugin</artifactId>
 
68
        <version>1.4</version>
 
69
        <executions>
 
70
          <execution>
 
71
            <phase>package</phase>
 
72
            <goals>
 
73
              <goal>shade</goal>
 
74
            </goals>
 
75
            <configuration>
 
76
              <shadedArtifactAttached>true</shadedArtifactAttached>
 
77
              <shadedClassifierName>shaded</shadedClassifierName>
 
78
              <artifactSet>
 
79
                <includes>
 
80
                  <include>org.apache.httpcomponents:httpclient</include>
 
81
                  <include>org.apache.httpcomponents:httpcore</include>
 
82
                  <include>commons-logging:commons-logging</include>
 
83
                  <include>commons-codec:commons-codec</include>
 
84
                  <include>${project.groupId}:wagon-http-shared4</include>
 
85
                </includes>
 
86
              </artifactSet>
 
87
              <shadedArtifactAttached>true</shadedArtifactAttached>
 
88
              <shadedClassifierName>shaded</shadedClassifierName>
 
89
              <relocations>
 
90
                <relocation>
 
91
                  <pattern>org.apache.commons.codec</pattern>
 
92
                  <shadedPattern>org.apache.maven.wagon.providers.http.commons.codec</shadedPattern>
 
93
                </relocation>
 
94
                <relocation>
 
95
                  <pattern>org.apache.commons.logging</pattern>
 
96
                  <shadedPattern>org.apache.maven.wagon.providers.http.commons.logging</shadedPattern>
 
97
                </relocation>
 
98
                <relocation>
 
99
                  <pattern>org.apache.http</pattern>
 
100
                  <shadedPattern>org.apache.maven.wagon.providers.http.httpclient</shadedPattern>
 
101
                </relocation>
 
102
              </relocations>
 
103
            </configuration>
 
104
          </execution>
 
105
        </executions>
 
106
      </plugin>
 
107
    </plugins>
 
108
  </build>
 
109
</project>