2009-02-22 13:42:25 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2007-05-20 16:36:28 -04:00
|
|
|
<!--
|
|
|
|
====================================================================
|
|
|
|
Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
or more contributor license agreements. See the NOTICE file
|
|
|
|
distributed with this work for additional information
|
|
|
|
regarding copyright ownership. The ASF licenses this file
|
|
|
|
to you under the Apache License, Version 2.0 (the
|
|
|
|
"License"); you may not use this file except in compliance
|
|
|
|
with the License. You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing,
|
|
|
|
software distributed under the License is distributed on an
|
|
|
|
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
KIND, either express or implied. See the License for the
|
|
|
|
specific language governing permissions and limitations
|
|
|
|
under the License.
|
|
|
|
====================================================================
|
|
|
|
|
|
|
|
This software consists of voluntary contributions made by many
|
|
|
|
individuals on behalf of the Apache Software Foundation. For more
|
|
|
|
information on the Apache Software Foundation, please see
|
|
|
|
<http://www.apache.org />.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
2007-06-23 16:52:31 -04:00
|
|
|
<artifactId>httpcomponents-client</artifactId>
|
2013-06-12 03:51:45 -04:00
|
|
|
<version>4.3-beta3-SNAPSHOT</version>
|
2007-05-20 16:36:28 -04:00
|
|
|
</parent>
|
|
|
|
<artifactId>httpclient</artifactId>
|
2013-08-09 11:57:15 -04:00
|
|
|
<name>Apache HttpClient</name>
|
2007-05-20 16:36:28 -04:00
|
|
|
<description>
|
2013-08-09 11:57:15 -04:00
|
|
|
HttpComponents Client
|
2007-05-20 16:36:28 -04:00
|
|
|
</description>
|
2007-12-17 08:54:38 -05:00
|
|
|
<url>http://hc.apache.org/httpcomponents-client</url>
|
2010-10-22 17:47:45 -04:00
|
|
|
<packaging>jar</packaging>
|
2007-05-20 16:36:28 -04:00
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
2007-06-06 16:28:12 -04:00
|
|
|
<artifactId>httpcore</artifactId>
|
2010-05-12 15:23:18 -04:00
|
|
|
<scope>compile</scope>
|
2007-05-20 16:36:28 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
2010-05-12 15:23:18 -04:00
|
|
|
<scope>compile</scope>
|
2007-05-20 16:36:28 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-codec</groupId>
|
|
|
|
<artifactId>commons-codec</artifactId>
|
2010-05-12 15:23:18 -04:00
|
|
|
<scope>compile</scope>
|
2007-05-20 16:36:28 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2010-05-11 16:36:26 -04:00
|
|
|
<dependency>
|
2011-02-25 07:13:16 -05:00
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-core</artifactId>
|
2010-05-11 16:36:26 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2007-05-20 16:36:28 -04:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
2007-07-01 13:55:46 -04:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
<includes>
|
2007-07-09 09:18:41 -04:00
|
|
|
<include>**/*.properties</include>
|
2007-07-01 13:55:46 -04:00
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
2007-05-20 16:36:28 -04:00
|
|
|
<plugins>
|
2013-07-27 09:16:37 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>build-helper-maven-plugin</artifactId>
|
|
|
|
<version>1.8</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>add-source</id>
|
|
|
|
<phase>generate-sources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>add-source</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<sources>
|
|
|
|
<source>src/main/java-deprecated</source>
|
|
|
|
</sources>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2009-08-19 15:14:28 -04:00
|
|
|
<plugin>
|
2009-02-24 05:23:53 -05:00
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>test-jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2007-05-20 16:36:28 -04:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<reporting>
|
|
|
|
<plugins>
|
|
|
|
|
2009-06-06 18:03:11 -04:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
2011-09-10 23:28:11 -04:00
|
|
|
<version>${hc.javadoc.version}</version>
|
2009-06-06 18:03:11 -04:00
|
|
|
<configuration>
|
2011-02-06 21:00:12 -05:00
|
|
|
<!-- reduce console output. Can override with -Dquiet=false -->
|
|
|
|
<quiet>true</quiet>
|
2012-12-07 08:28:03 -05:00
|
|
|
<source>${maven.compile.source}</source>
|
2009-06-06 18:03:11 -04:00
|
|
|
<links>
|
2010-11-05 10:28:48 -04:00
|
|
|
<link>http://download.oracle.com/javase/1.5.0/docs/api/</link>
|
|
|
|
<link>http://hc.apache.org/httpcomponents-core-ga/httpcore/apidocs/</link>
|
2009-06-06 18:03:11 -04:00
|
|
|
</links>
|
|
|
|
</configuration>
|
|
|
|
<reportSets>
|
|
|
|
<reportSet>
|
|
|
|
<reports>
|
|
|
|
<report>javadoc</report>
|
|
|
|
</reports>
|
|
|
|
</reportSet>
|
|
|
|
</reportSets>
|
2007-05-20 16:36:28 -04:00
|
|
|
</plugin>
|
2009-06-06 18:03:11 -04:00
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-jxr-plugin</artifactId>
|
2013-08-09 03:24:29 -04:00
|
|
|
<version>${hc.jxr.version}</version>
|
2009-06-06 18:03:11 -04:00
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-report-plugin</artifactId>
|
2013-08-09 03:24:29 -04:00
|
|
|
<version>${hc.surefire-report.version}</version>
|
2009-06-06 18:03:11 -04:00
|
|
|
</plugin>
|
|
|
|
|
2007-05-20 16:36:28 -04:00
|
|
|
</plugins>
|
|
|
|
</reporting>
|
|
|
|
|
|
|
|
</project>
|